Fortraneries/RandomStuff/Makefile

19 lines
335 B
Makefile

#
# Fortraneries by tTh - Random Stuff
#
GFOPT = -Wall -Wextra -g -time
all: displaykinds
# -----------------------------------------------------
# -----------------------------------------------------
displaykinds: displaykinds.f90 Makefile
gfortran $(GFOPT) $< -o $@
# -----------------------------------------------------