34 lines
		
	
	
		
			701 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			701 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| #     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 $@
 | |
| 
 | |
| # ----------------------------------------------------------
 | |
| 
 | |
| 
 | |
| # ----------------------------------------------------------
 | 
