2022-02-07 23:17:22 +01:00
|
|
|
#
|
|
|
|
# tth@konrad:~/Devel/Fortraneries/SoundBrotching$
|
|
|
|
#
|
|
|
|
|
2022-05-05 06:58:45 +02:00
|
|
|
GOPT = -Wall -Wextra -time -g
|
2022-02-07 23:17:22 +01:00
|
|
|
|
2022-05-23 11:11:09 +02:00
|
|
|
all: panoramix genwaves essai
|
2022-02-07 23:17:22 +01:00
|
|
|
|
|
|
|
# ----------------------------------------------------------
|
|
|
|
#
|
|
|
|
# real softwares
|
|
|
|
#
|
|
|
|
FLIBS = soundbrotch.o
|
|
|
|
|
2022-03-10 10:44:45 +01:00
|
|
|
# support functions
|
2022-02-07 23:17:22 +01:00
|
|
|
soundbrotch.o: soundbrotch.f90 Makefile
|
2022-03-10 10:44:45 +01:00
|
|
|
gfortran $(GOPT) -c $<
|
2022-02-07 23:17:22 +01:00
|
|
|
|
2022-05-23 11:11:09 +02:00
|
|
|
# some test...
|
|
|
|
essai: essai.f90 Makefile $(FLIBS)
|
|
|
|
gfortran $(GOPT) $< $(FLIBS) -o $@
|
|
|
|
|
2022-03-10 10:44:45 +01:00
|
|
|
# main proggies
|
2022-02-07 23:17:22 +01:00
|
|
|
panoramix: panoramix.f90 Makefile $(FLIBS)
|
2022-03-10 10:44:45 +01:00
|
|
|
gfortran $(GOPT) $< $(FLIBS) -o $@
|
2022-02-07 23:17:22 +01:00
|
|
|
|
|
|
|
genwaves: genwaves.f90 Makefile $(FLIBS)
|
2022-03-10 10:44:45 +01:00
|
|
|
gfortran $(GOPT) $< $(FLIBS) -o $@
|
2022-02-07 23:17:22 +01:00
|
|
|
|
|
|
|
# ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
# ----------------------------------------------------------
|