# Makefile de ejemplo para C++ # # Creado: jue abr 15 15:34:19 ART 2004 # # Copyleft 2004 - Leandro Lucarella, Bajo licencia GPL [http://www.gnu.org/] # # CONFIGURACION ################ # Nombre del ejecutable. TARGETS = bufford_test sort_test # Opciones para el compilador C. CFLAGS = -Wall -ggdb -DDEBUG # Opciones para el compilador C++. CXXFLAGS = $(CFLAGS) -fno-inline # REGLAS ######### .PHONY: all clean all: $(TARGETS) bufford_test: bufford.o bufford_test.o sort_test: bufford.o mergefile.o mergepool.o extsort.o sort_test.o clean: @$(RM) -fv *.o $(TARGETS)