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.
23 lines
450 B
Makefile
23 lines
450 B
Makefile
20 years ago
|
include ../../Make.inc
|
||
|
|
||
|
OBJS = psb_dgather.o psb_dhalo.o psb_dovrl.o \
|
||
19 years ago
|
psb_ihalo.o psb_zgather.o psb_zhalo.o psb_zovrl.o
|
||
20 years ago
|
|
||
19 years ago
|
MPFOBJS = psb_dscatter.o psb_zscatter.o
|
||
20 years ago
|
INCDIRS = -I ../../lib -I .
|
||
20 years ago
|
LIBDIR = ../../lib
|
||
20 years ago
|
|
||
|
lib: mpfobjs $(OBJS)
|
||
20 years ago
|
$(AR) $(LIBDIR)/$(LIBNAME) $(MPFOBJS) $(OBJS)
|
||
|
$(RANLIB) $(LIBDIR)/$(LIBNAME)
|
||
20 years ago
|
|
||
|
|
||
|
mpfobjs:
|
||
|
(make $(MPFOBJS) F90="$(MPF90)" FC="$(MPF90)" FCOPT="$(F90COPT)")
|
||
|
|
||
|
|
||
|
clean:
|
||
|
/bin/rm -f $(MPFOBJS) $(OBJS)
|
||
20 years ago
|
|
||
|
veryclean: clean
|