little tuning

This commit is contained in:
tTh 2023-06-11 09:43:35 +02:00
parent 72b58a8f0b
commit 9675b16dfe
1 changed files with 4 additions and 5 deletions

View File

@ -3,6 +3,7 @@
# #
GFOPT = -Wall -Wextra -g -time -I../Modules GFOPT = -Wall -Wextra -g -time -I../Modules
MYLIB = '../Modules/libtth90modules.a'
# ---- programmes # ---- programmes
@ -14,15 +15,13 @@ doubledice: doubledice.f90 Makefile \
gfortran $(GFOPT) $< usegenplot.o utils_ga.o -o $@ gfortran $(GFOPT) $< usegenplot.o utils_ga.o -o $@
doublegauss: doublegauss.f90 Makefile utils_ga.o doublegauss: doublegauss.f90 Makefile utils_ga.o
gfortran $(GFOPT) $< ../Modules/pixrgb.o utils_ga.o -o $@ gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
trigofest: trigofest.f90 Makefile vue3axes.o utils_ga.o trigofest: trigofest.f90 Makefile vue3axes.o utils_ga.o
gfortran $(GFOPT) $< ../Modules/pixrgb.o ../Modules/spitpgm.o \ gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
utils_ga.o -o $@
noisepic: noisepic.f90 Makefile noisepic: noisepic.f90 Makefile
gfortran $(GFOPT) $< ../Modules/spitpgm.o ../Modules/pixrgb.o \ gfortran $(GFOPT) $< $(MYLIB) \
../Modules/noisepictures.o \
-o $@ -o $@
# ---- modules locaux # ---- modules locaux