You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
619 B
Makefile
36 lines
619 B
Makefile
20 years ago
|
include ../../../Make.inc
|
||
20 years ago
|
#
|
||
|
# The object files
|
||
|
#
|
||
|
|
||
19 years ago
|
FOBJS = djadmm.o djadmv.o djadsm.o djadsv.o djdnrmi.o djadnr.o djadprt.o\
|
||
20 years ago
|
djadmv2.o djadmv3.o djadmv4.o djadrws.o djdrws.o
|
||
20 years ago
|
|
||
|
OBJS=$(FOBJS)
|
||
|
|
||
|
#
|
||
|
# Where the library should go, and how it is called.
|
||
|
# Note that we are regenerating most of libsparker.a on the fly.
|
||
20 years ago
|
LIBDIR=../../../lib
|
||
20 years ago
|
#LIBNAME=libsparker.a
|
||
|
LIBFILE=$(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
INCDIRS=-I. -I$(LIBDIR)
|
||
20 years ago
|
|
||
|
#
|
||
|
# No change should be needed below
|
||
|
#
|
||
|
|
||
|
default: lib
|
||
|
|
||
|
lib: $(OBJS)
|
||
20 years ago
|
$(AR) $(LIBDIR)/$(LIBNAME) $(OBJS)
|
||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
|
||
|
clean: cleanobjs
|
||
|
|
||
|
veryclean: cleanobjs
|
||
|
|
||
|
cleanobjs:
|
||
|
/bin/rm -f $(OBJS)
|
||
|
|