Fortraneries/GrafAnim/Makefile

38 lines
848 B
Makefile
Raw Normal View History

2022-10-29 07:18:39 +11:00
#
# Fortraneries by tTh - Graf Anim
#
2023-02-12 01:31:21 +11:00
GFOPT = -Wall -Wextra -g -time -I../Modules
# ---- programmes
2022-10-29 07:18:39 +11:00
essai: essai.f90 usegenplot.o Makefile
gfortran $(GFOPT) $< usegenplot.o -o $@
2023-02-12 01:31:21 +11:00
doubledice: doubledice.f90 Makefile \
utils_ga.o usegenplot.o
gfortran $(GFOPT) $< usegenplot.o utils_ga.o -o $@
doublegauss: doublegauss.f90 Makefile utils_ga.o
gfortran $(GFOPT) $< ../Modules/pixrgb.o utils_ga.o -o $@
trigofest: trigofest.f90 Makefile vue3axes.o utils_ga.o
gfortran $(GFOPT) $< ../Modules/pixrgb.o ../Modules/spitpgm.o \
utils_ga.o -o $@
2023-05-07 19:33:43 +11:00
noisepic: noisepic.f90 Makefile
gfortran $(GFOPT) $< ../Modules/spitpgm.o -o $@
2023-02-12 01:31:21 +11:00
# ---- modules locaux
2022-11-22 18:58:56 +11:00
2022-10-29 07:18:39 +11:00
usegenplot.o: usegenplot.f90 Makefile
gfortran $(GFOPT) -c $<
2023-02-12 01:31:21 +11:00
utils_ga.o: utils_ga.f90 Makefile
gfortran $(GFOPT) -c $<
vue3axes.o: vue3axes.f90 Makefile
gfortran $(GFOPT) -c $<