######################################################################## # Uses some of the RNPL environment variables for compilation # # RNPL_F77 # RNPL_F77PP # RNPL_FLIBS # ######################################################################## .IGNORE: ######################################################################## # NOTE: This Makefile uses the Bourne shell, 'sh' ######################################################################## SHELL = /bin/sh ######################################################################## # Set 'APP' to application name stem (prefix) then execute # 'make fix' to convert Makefile to use explicit targets ######################################################################## APP = model_elliptic ######################################################################## # If your application uses headers and/or libraries from # non-system locations, define the following macros appropriately ... # (set to white-space separated path names, don't use 'csh' ~ notation # for home directories) ######################################################################## USER_INC_PATHS = USER_LIB_PATHS = ######################################################################## # If you want to set non-default flags for the 'f77' compiler, do so # here ######################################################################## RNPL = $(RNPL_RNPL) F77 = $(RNPL_F77) F77_LOAD = $(RNPL_F77LOAD) F77PP = $(RNPL_F77PP) FLIBS = $(RNPL_FLIBS) .f.o: $(F77) -c $*.f all: $(APP) fix: Makefile sed "s@$(APP)@$(APP)@g" < Makefile > .Makefile mv .Makefile Makefile $(APP): $(APP).o $(F77_LOAD) $(APP).o $(FLIBS) -lrnpl -o $(APP) clean: rm $(APP) > /dev/null 2>&1 rm *.o > /dev/null 2>&1