Fortraneries/RandomStuff/Makefile

19 lines
335 B
Makefile
Raw Normal View History

2022-05-23 12:23:21 +02:00
#
2022-10-28 21:53:57 +02:00
# Fortraneries by tTh - Random Stuff
2022-05-23 12:23:21 +02:00
#
2022-10-28 21:53:57 +02:00
GFOPT = -Wall -Wextra -g -time
2023-05-07 23:46:45 +02:00
all: displaykinds
2022-05-23 12:23:21 +02:00
# -----------------------------------------------------
2022-10-28 21:53:57 +02:00
# -----------------------------------------------------
2022-05-23 12:23:21 +02:00
displaykinds: displaykinds.f90 Makefile
2022-10-28 21:53:57 +02:00
gfortran $(GFOPT) $< -o $@
2022-05-23 12:23:21 +02:00
2022-10-28 21:53:57 +02:00
# -----------------------------------------------------