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.
28 lines
525 B
Makefile
28 lines
525 B
Makefile
20 years ago
|
include ../../Make.inc
|
||
|
|
||
|
#FCOPT=-O2
|
||
20 years ago
|
OBJS= psb_ddot.o psb_damax.o psb_dasum.o psb_daxpby.o\
|
||
20 years ago
|
psb_dnrm2.o psb_dnrmi.o psb_dspmm.o psb_dspsm.o\
|
||
19 years ago
|
pdtreecomb.o \
|
||
|
psb_zamax.o psb_zasum.o psb_zaxpby.o psb_zdot.o \
|
||
|
psb_znrm2.o psb_znrmi.o psb_zspmm.o psb_zspsm.o
|
||
20 years ago
|
LIBDIR=../../lib
|
||
|
HERE=.
|
||
|
|
||
|
INCDIRS=-I. -I.. -I$(LIBDIR)
|
||
|
|
||
|
|
||
20 years ago
|
lib: $(OBJS)
|
||
|
$(AR) $(LIBDIR)/$(LIBNAME) $(OBJS)
|
||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
|
||
|
#$(F90_PSDOBJS): $(MODS)
|
||
|
|
||
|
veryclean: clean
|
||
|
/bin/rm -f $(LIBNAME)
|
||
|
|
||
|
clean:
|
||
20 years ago
|
/bin/rm -f $(OBJS) $(LOCAL_MODS)
|
||
20 years ago
|
|
||
|
veryclean: clean
|