Fortraneries/GrafAnim/Makefile

47 lines
1.0 KiB
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
2023-06-11 18:43:35 +11:00
MYLIB = '../Modules/libtth90modules.a'
2023-02-12 01:31:21 +11:00
# ---- programmes
2022-10-29 07:18:39 +11:00
2023-06-21 11:01:44 +11:00
essai: essai.f90 Makefile
gfortran $(GFOPT) $< $(MYLIB) -o $@
2022-10-29 07:18:39 +11:00
2023-12-25 06:53:27 +11:00
geowaves: geowaves.f90 Makefile
gfortran $(GFOPT) $< $(MYLIB) -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
2023-06-11 18:43:35 +11:00
gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
2023-02-12 01:31:21 +11:00
trigofest: trigofest.f90 Makefile vue3axes.o utils_ga.o
2023-06-11 18:43:35 +11:00
gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
2023-02-12 01:31:21 +11:00
2023-05-07 19:33:43 +11:00
noisepic: noisepic.f90 Makefile
2024-02-07 13:22:44 +11:00
gfortran $(GFOPT) $< $(MYLIB) -o $@
2024-01-06 02:50:25 +11:00
wavmetrics.o: wavmetrics.f90 Makefile
gfortran $(GFOPT) -c $<
soundscope: soundscope.f90 Makefile utils_ga.o
gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
# ---- 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 $<