added a makefile

This commit is contained in:
Guillaume Raffy 2023-06-05 14:34:48 +02:00
parent bd6328dc24
commit e8f9f8541c
1 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -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