Fortraneries/RandomStuff/Makefile

19 lines
335 B
Makefile
Raw Normal View History

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