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.
44 lines
781 B
Makefile
44 lines
781 B
Makefile
20 years ago
|
include ../../../Make.inc
|
||
20 years ago
|
#
|
||
|
# The object files
|
||
|
#
|
||
|
|
||
19 years ago
|
FOBJS = dcrcr.o dcrjd.o dgblock.o partition.o \
|
||
20 years ago
|
dgindex.o djadrp.o djadrp1.o dcsrrp.o dcsrp1.o check_dim.o \
|
||
20 years ago
|
Max_nnzero.o dcoco.o dcocr.o dcrco.o djdcox.o djdco.o dvtfg.o dgind_tri.o \
|
||
19 years ago
|
gen_block.o reordvn.o\
|
||
|
zcoco.o zcocr.o zcrco.o zcrcr.o zcrjd.o zgindex.o zgind_tri.o
|
||
20 years ago
|
|
||
|
#
|
||
|
# dgind_tri.o
|
||
|
#
|
||
|
|
||
|
|
||
|
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
|
||
|
#
|
||
|
|
||
|
|
||
|
lib: $(FOBJS)
|
||
20 years ago
|
$(AR) $(LIBDIR)/$(LIBNAME) $(OBJS)
|
||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
|
||
|
clean: cleanobjs
|
||
|
|
||
|
veryclean: cleanobjs
|
||
|
|
||
|
cleanobjs:
|
||
|
/bin/rm -f $(OBJS)
|
||
|
|
||
|
|