trigofest is running

This commit is contained in:
tTh
2023-02-11 15:31:21 +01:00
parent 8223cb8e77
commit 37efbc3404
4 changed files with 170 additions and 3 deletions

View File

@@ -2,14 +2,33 @@
# Fortraneries by tTh - Graf Anim
#
GFOPT = -Wall -Wextra -g -time
GFOPT = -Wall -Wextra -g -time -I../Modules
# ---- programmes
essai: essai.f90 usegenplot.o Makefile
gfortran $(GFOPT) $< usegenplot.o -o $@
doubledice: doubledice.f90 usegenplot.o Makefile
gfortran $(GFOPT) $< usegenplot.o -o $@
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 $@
# ---- modules locaux
usegenplot.o: usegenplot.f90 Makefile
gfortran $(GFOPT) -c $<
utils_ga.o: utils_ga.f90 Makefile
gfortran $(GFOPT) -c $<
vue3axes.o: vue3axes.f90 Makefile
gfortran $(GFOPT) -c $<