From e8f9f8541c9c2196ef482d202aafba0e9ba5ec18 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Mon, 5 Jun 2023 14:34:48 +0200 Subject: [PATCH] added a makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9a03d83 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +all: run + +a.out: cs_adiabats_2.f + gfortran -g -O0 cs_adiabats_2.f + +.PHONY: run +run: a.out + ./a.out + +.PHONY: clean +clean: + rm -f a.out + rm -f cross*.dat \ No newline at end of file