######################################################################## # # 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