# # tth@konrad:~/Devel/Fortraneries/SoundBrotching$ # GOPT = -Wall -Wextra -time -g all: panoramix genwaves essai # ---------------------------------------------------------- # # real softwares # FLIBS = soundbrotch.o # support functions soundbrotch.o: soundbrotch.f90 Makefile gfortran $(GOPT) -c $< # some test... essai: essai.f90 Makefile $(FLIBS) gfortran $(GOPT) $< $(FLIBS) -o $@ # main proggies panoramix: panoramix.f90 Makefile $(FLIBS) gfortran $(GOPT) $< $(FLIBS) -o $@ genwaves: genwaves.f90 Makefile $(FLIBS) gfortran $(GOPT) $< $(FLIBS) -o $@ # ---------------------------------------------------------- # ----------------------------------------------------------