#************************************************************ # * # Makefile for the BC objects in BC * # * #************************************************************ # Define shell SHELL = /bin/sh #************************************************************ # SECTION GOOD FOR ALL MACHINES: EVERYTHING IS SENDED # # Define your C compiler and flags CFLAGS = CC = # Define extra compiling option OPTS= # Define Fortran compiler and flags FC = FFLAGS = FPRES = # Define your C pre-processor (for FORTRAN file) CPP= CPPFLAGS= # # END SECTION GOOD FOR ALL MACHINES #************************************************************ # Define the root directory where is Surfer ROOTDIR= # Location where to look for local include file SRCINC = # GP libraries GPLIB= # Name of library archiver and flags to send AR= ARFLAGS= OBJS = make_bc_1p_sym.o SOURCES = make_bc_1p_sym.f SRCFTC = make_bc_2p.f all: $(OBJS) # Suffix rules .f.o: $(FC) -c $(FFLAGS) -I$(SRCINC) $< ftnchek: $(SRCFTC) $(RM) -f tmp.f cat $(SRCFTC) >> ../tot.f @echo " Making ftncheck with $(SRCFTC) " clean: rm -f *.o *~ *.l *.j *.m #*#