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