From b786a276da4462adef111c2c356abeb27f63a5d3 Mon Sep 17 00:00:00 2001 From: SriReddy-NOAA Date: Thu, 8 Apr 2021 23:54:52 -0400 Subject: Version 3.2.5 --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..63bbf05 --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +RM = rm -f + +CC = CC +FC = f90 + +CFLAGS = -C +INCLUDES = +LIBS = +.SUFFIXES : .o .f +# rule to create .o files from .f files +.f.o: + $(RM) $*.o + $(FC) -c $(CFLAGS) $(INCLUDES) $*.f + +# rule to create executables from .o files +.o: + $(RM) $@ + $(FC) $(CFLAGS) $(INCLUDES) -o $@ $< $(LIBS) + +all: htdp + +htdp.o: htdp.f +initvl.o: initvl.f +initeq.o: initeq.f +initbd.o: initbd.f +initps.o: initps.f + +htdp: htdp.o initvl.o initeq.o initbd.o initps.o + $(FC) $(CFLAGS) $(INCLUDES) -o $@ $? $(LIBS) + -- cgit v1.2.3