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.
simulacion-permeabilidad/fftma_module/gen/lib_src/Makefile.libFFTMA

31 lines
659 B
Makefile

########################################################################
#
# Makefile for library
#
########################################################################
INTERFACE = ../include
INCLUDE = -I${INTERFACE}
LIBS = -lm -L../lib
CC = cc
CCFLAGS =
LIB = libFFTMA_${ARCH}.a
NOBJS= gammf.o fftma.o addstat.o axes.o cgrid.o covariance.o fourt.o length.o maxfactor.o test_fact.o cov_value.o generate.o gasdev.o ran2.o stable.o gaussian.o power.o cubic.o spherical.o nugget.o exponential.o cardsin.o nor2log.o
.c.o:
${CC} $(INCLUDE) $(CCFLAGS) -c $<
# LIBRARY
$(LIB) : $(NOBJS)
ar cr $(LIB) $(NOBJS)
ranlib $(LIB)
clean :
rm *.o