Fortraneries/SoundBrotching/Makefile

30 lines
600 B
Makefile
Raw Normal View History

2022-02-08 09:17:22 +11:00
#
# tth@konrad:~/Devel/Fortraneries/SoundBrotching$
#
2022-03-10 20:44:45 +11:00
GOPT = -Wall -Wextra -g
2022-02-08 09:17:22 +11:00
2022-03-10 20:44:45 +11:00
all: panoramix genwaves
2022-02-08 09:17:22 +11:00
# ----------------------------------------------------------
#
# real softwares
#
FLIBS = soundbrotch.o
2022-03-10 20:44:45 +11:00
# support functions
2022-02-08 09:17:22 +11:00
soundbrotch.o: soundbrotch.f90 Makefile
2022-03-10 20:44:45 +11:00
gfortran $(GOPT) -c $<
2022-02-08 09:17:22 +11:00
2022-03-10 20:44:45 +11:00
# main proggies
2022-02-08 09:17:22 +11:00
panoramix: panoramix.f90 Makefile $(FLIBS)
2022-03-10 20:44:45 +11:00
gfortran $(GOPT) $< $(FLIBS) -o $@
2022-02-08 09:17:22 +11:00
genwaves: genwaves.f90 Makefile $(FLIBS)
2022-03-10 20:44:45 +11:00
gfortran $(GOPT) $< $(FLIBS) -o $@
2022-02-08 09:17:22 +11:00
# ----------------------------------------------------------
# ----------------------------------------------------------