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.
psblas3/test/pargen/Makefile

41 lines
617 B
Makefile

19 years ago
include ../../Make.inc
#
# Libraries used
#
LIBDIR=../../lib/
PSBLAS_LIB= -L$(LIBDIR) -lpsb_util -lpsb_krylov -lpsb_prec -lpsb_base
19 years ago
#
# Compilers and such
#
CCOPT= -g
FINCLUDES=$(FMFLAG)$(LIBDIR) $(FMFLAG).
19 years ago
EXEDIR=./runs
19 years ago
ppde90: ppde90.o
$(F90LINK) ppde90.o -o ppde90 $(PSBLAS_LIB) $(LDLIBS)
19 years ago
/bin/mv ppde90 $(EXEDIR)
19 years ago
thsrt: thsrt.o
$(F90LINK) thsrt.o -o thsrt $(PSBLAS_LIB) $(LDLIBS)
/bin/mv thsrt $(EXEDIR)
19 years ago
.f90.o:
$(MPF90) $(F90COPT) $(FINCLUDES) $(FDEFINES) -c $<
19 years ago
clean:
/bin/rm -f ppde90.o $(EXEDIR)/ppde90
19 years ago
verycleanlib:
(cd ../..; make veryclean)
lib:
(cd ../../; make library)
19 years ago