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.
27 lines
402 B
Makefile
27 lines
402 B
Makefile
20 years ago
|
include ../../Make.inc
|
||
|
|
||
|
|
||
20 years ago
|
LIBDIR=../../lib
|
||
20 years ago
|
|
||
|
HERE=.
|
||
20 years ago
|
OBJS= psb_dcgstab.o psb_dcg.o psb_dcgs.o \
|
||
19 years ago
|
psb_dbicg.o psb_dcgstabl.o psb_dgmresr.o\
|
||
19 years ago
|
psb_zcgstab.o psb_zcgs.o
|
||
20 years ago
|
|
||
|
INCDIRS=-I. -I.. -I$(LIBDIR)
|
||
|
|
||
20 years ago
|
lib: $(OBJS)
|
||
|
$(AR) $(LIBDIR)/$(LIBNAME) $(OBJS)
|
||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
|
||
|
#$(F90OBJS): $(MODS)
|
||
|
|
||
|
|
||
|
veryclean: clean
|
||
|
/bin/rm -f $(LIBNAME)
|
||
|
|
||
|
clean:
|
||
20 years ago
|
/bin/rm -f $(OBJS) $(LOCAL_MODS)
|
||
20 years ago
|
|
||
|
veryclean: clean
|