23 lines
485 B
Makefile
23 lines
485 B
Makefile
#
|
|
# Fortraneries by tTh - Random Stuff
|
|
#
|
|
|
|
GFOPT = -Wall -Wextra -g -time
|
|
|
|
all: essai displaykinds
|
|
|
|
# -----------------------------------------------------
|
|
|
|
mathstuff2.o: mathstuff2.f90 Makefile
|
|
gfortran $(GFOPT) -c $<
|
|
|
|
# -----------------------------------------------------
|
|
|
|
essai: essai.f90 Makefile mathstuff2.o
|
|
gfortran $(GFOPT) $< mathstuff2.o -o $@
|
|
|
|
displaykinds: displaykinds.f90 Makefile
|
|
gfortran $(GFOPT) $< -o $@
|
|
|
|
# -----------------------------------------------------
|