summaryrefslogtreecommitdiff
path: root/class/Makefile
diff options
context:
space:
mode:
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