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/LIBFFTMA/makefileFFTMA_debug.lib

37 lines
729 B
Plaintext

#
########################################################################
#
# Makefile for library
#
########################################################################
#
INCLUDE = -I./
LIBS = -lm -L./
# CCFLAGS = -fast
ifeq (${ARCH},sun)
CC = cc
CCFLAGS = -g
endif
ifeq (${ARCH},linux)
CC = gcc
CCFLAGS = -g
endif
LIB = libFFTMA_debug_${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