aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2024-05-05 23:31:27 +0200
committerThomas Albers Raviola <thomas@thomaslabs.org>2024-05-05 23:31:27 +0200
commit055ed6e70738cf9e18e3f983c003a87eae1e4aaa (patch)
tree1caf094e4749219ff15294c8da3faff0b3fb09e9 /Makefile
parent8e30cb8d4c1caffc2d877bec6975f1539fc193d3 (diff)
* Change language to Common LispHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index bfeae34..0000000
--- a/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-NAME = nbody
-TARGET = $(NAME)
-
-FC = gfortran
-
-SRC = common.f90\
- simulation.f90\
- integral.f90\
- main.f90
-
-OBJ = $(SRC:%.f90=build/%.o)
-MOD = $(SRC:%.f90=build/%.mod)
-
-FFLAGS = -std=f2018
-LDFLAGS =
-
-MOD_DIR = build
-
-all : $(TARGET)
-
-$(TARGET) : $(OBJ)
- $(FC) $(LDFLAGS) -J$(MOD_DIR) $(OBJ) -o $@
-
-build/%.o : src/%.f90
- $(FC) $(FFLAGS) -J$(MOD_DIR) -c $< -o $@
-
-.PHONY : clean
-clean :
- rm -rf build/* $(TARGET)