From 124aef6fa07d6b1aa0616f0e4d63d8825b00f159 Mon Sep 17 00:00:00 2001 From: Giacomo Mulas <giacomo.mulas@inaf.it> Date: Mon, 4 Sep 2023 14:30:02 +0000 Subject: [PATCH] Upload New File --- sphere/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sphere/Makefile diff --git a/sphere/Makefile b/sphere/Makefile new file mode 100644 index 00000000..47e5c079 --- /dev/null +++ b/sphere/Makefile @@ -0,0 +1,21 @@ +FC=gfortran +FCFLAGS=-std=legacy -O3 +LFLAGS= + +all: edfb sph + +edfb: edfb.o + $(FC) $(FCFLAGS) -o edfb edfb.o $(LFLAGS) + +sph: sph.o + $(FC) $(FCFLAGS) -o sph sph.o $(LFLAGS) + +clean: + rm -f *.o + +wipe: + rm -f edfb sph *.o + +%.o : %.f + $(FC) $(FCFLAGS) -c -o $@ $< + -- GitLab