You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			526 B
		
	
	
	
		
			Makefile
		
	
			
		
		
	
	
			31 lines
		
	
	
		
			526 B
		
	
	
	
		
			Makefile
		
	
| 
 | |
| ########################################################################
 | |
| #
 | |
| #   Makefile for library
 | |
| #
 | |
| ########################################################################
 | |
| 
 | |
| 
 | |
| INTERFACE = ../include
 | |
| 
 | |
| INCLUDE = -I${INTERFACE}
 | |
| LIBS =  -lm -L../lib
 | |
| CC = cc
 | |
|  CCFLAGS = 
 | |
| 
 | |
| LIB = libFFTMA2_${ARCH}.a
 | |
| 
 | |
| NOBJS= kgeneration.o kgeneration2.o fftma2.o prebuild_gwn.o build_real.o addstat2.o clean_real.o
 | |
| 
 | |
| .c.o: 
 | |
| 	${CC} $(INCLUDE) $(CCFLAGS) -c $< 
 | |
| 
 | |
| # LIBRARY
 | |
| $(LIB) : $(NOBJS) 
 | |
| 	 ar cr $(LIB) $(NOBJS)
 | |
| 	 ranlib $(LIB)
 | |
| 
 | |
| clean : 
 | |
| 	rm *.o
 | |
| 
 |