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