Fortraneries/GrafAnim/Makefile

16 lines
308 B
Makefile
Raw Normal View History

2022-10-29 07:18:39 +11:00
#
# Fortraneries by tTh - Graf Anim
#
2022-11-14 09:47:45 +11:00
GFOPT = -Wall -Wextra -g -time
2022-10-29 07:18:39 +11:00
essai: essai.f90 usegenplot.o Makefile
gfortran $(GFOPT) $< usegenplot.o -o $@
2022-11-22 18:58:56 +11:00
doubledice: doubledice.f90 usegenplot.o Makefile
gfortran $(GFOPT) $< usegenplot.o -o $@
2022-10-29 07:18:39 +11:00
usegenplot.o: usegenplot.f90 Makefile
gfortran $(GFOPT) -c $<