summaryrefslogtreecommitdiff
path: root/class/makefile
diff options
context:
space:
mode:
authorConnor Moore <connor@hhmoore.ca>2026-03-20 11:16:50 -0400
committerConnor Moore <connor@hhmoore.ca>2026-03-20 11:16:50 -0400
commitf7ad40d801e30f542baaf471e0b0d08aacc212ee (patch)
tree6474c10e962b9591feb2d30d675e5c9620003e05 /class/makefile
parent6ff45fe556d3b49a1506c5882036f909c143ed85 (diff)
Updated class code
Diffstat (limited to 'class/makefile')
-rw-r--r--class/makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/class/makefile b/class/makefile
deleted file mode 100644
index 935d1c6..0000000
--- a/class/makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-FC = gfortran
-FFLAGS = -Wall -Wextra
-
-all: test
-
-mod_globals.o: mod_globals.f90
- $(FC) $(FFLAGS) -c mod_globals.f90
-
-mod_sectors.o: mod_sectors.f90
- $(FC) $(FFLAGS) -c mod_sectors.f90
-
-test_sectors: mod_sectors_test.f90 mod_globals.o mod_sectors.o
- $(FC) $(FFLAGS) -o test_sectors.x mod_sectors_test.f90 mod_globals.o mod_sectors.o
-
-tests: test_sectors
- ./test_sectors.x
-
-clean:
- rm -f *.o *.x *.mod