]> git.llucax.com Git - z.facultad/75.74/practicos.git/blob - practicas/practica2/Makefile
Mejora debug.
[z.facultad/75.74/practicos.git] / practicas / practica2 / Makefile
1 # Makefile de ejemplo para C++
2
3 # Creado: jue abr 15 15:34:19 ART 2004
4 #
5 # Copyleft 2004 - Leandro Lucarella, Bajo licencia GPL [http://www.gnu.org/]
6 #
7
8 # CONFIGURACION
9 ################
10
11 # Opciones para el compilador C.
12 CFLAGS = -Wall -ansi -pedantic -DNDEBUG -O3 #-DDEBUG -ggdb
13
14 # Opciones para el compilador C++.
15 CXXFLAGS = $(CFLAGS) -fno-inline
16
17 #LDFLAGS=-static
18
19 # REGLAS
20 #########
21
22 .PHONY: all clean
23
24 targets = $(patsubst %.cpp,%,$(wildcard *.cpp))
25
26 all: $(targets)
27
28
29 clean:
30         @$(RM) -fv *.o $(targets)
31