# 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 ################ # Opciones para el compilador C. CFLAGS = -Wall -ansi -pedantic -DNDEBUG -O3 #-DDEBUG -ggdb # Opciones para el compilador C++. CXXFLAGS = $(CFLAGS) -fno-inline #LDFLAGS=-static # REGLAS ######### .PHONY: all clean targets = $(patsubst %.cpp,%,$(wildcard *.cpp)) all: $(targets) clean: @$(RM) -fv *.o $(targets)