47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
#
|
|
# Fortraneries by tTh - Graf Anim
|
|
#
|
|
|
|
GFOPT = -Wall -Wextra -g -time -I../Modules
|
|
MYLIB = '../Modules/libtth90modules.a'
|
|
|
|
# ---- programmes
|
|
|
|
essai: essai.f90 Makefile
|
|
gfortran $(GFOPT) $< $(MYLIB) -o $@
|
|
|
|
geowaves: geowaves.f90 Makefile
|
|
gfortran $(GFOPT) $< $(MYLIB) -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) $< $(MYLIB) utils_ga.o -o $@
|
|
|
|
trigofest: trigofest.f90 Makefile vue3axes.o utils_ga.o
|
|
gfortran $(GFOPT) $< $(MYLIB) utils_ga.o -o $@
|
|
|
|
noisepic: noisepic.f90 Makefile
|
|
gfortran $(GFOPT) $< $(MYLIB) -o $@
|
|
|
|
wavmetrics.o: wavmetrics.f90 Makefile
|
|
gfortran $(GFOPT) -c $<
|
|
|
|
soundscope: soundscope.f90 Makefile utils_ga.o
|
|
gfortran $(GFOPT) $< $(MYLIB) 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 $<
|
|
|
|
|