summaryrefslogtreecommitdiff
path: root/class/Makefile
diff options
context:
space:
mode:
authorConnor Moore <connor@hhmoore.ca>2026-03-23 01:40:30 -0400
committerConnor Moore <connor@hhmoore.ca>2026-03-23 01:40:30 -0400
commit5b08f435327695bb633cd21ae8252b25528de3f6 (patch)
tree7eb5cdfa0acded8eaf8f1881e8542fe7b441d67c /class/Makefile
parentf7ad40d801e30f542baaf471e0b0d08aacc212ee (diff)
New report and code for final submission.HEADmaster
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 17979f9..0000000
--- a/class/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-FC = gfortran
-FFLAGS = -O4 -fopenmp -fcheck=all
-NPROC = $(shell nproc)
-TARGET = langdyn.x
-
-all: clean $(TARGET) run
-
-$(TARGET): langdyn.f90
- $(FC) $(FFLAGS) -o $(TARGET) langdyn.f90
-
-clean:
- rm -f *.mod *.out *.gif $(TARGET)
-
-run: $(TARGET)
- OMP_NUM_THREADS=$(NPROC) ./$(TARGET)
-
-plot: trajectories.out kinetic_energies.out
- gnuplot movie_plot.gnu
- gnuplot ke_plot.gnu