]> git.llucax.com Git - z.facultad/75.29/dale.git/blob - tests/Makefile
Acomodar signos en los constructores.
[z.facultad/75.29/dale.git] / tests / Makefile
1
2 # Opciones para el compilador C++.
3 CXXFLAGS = -Wall -ggdb -ansi -pedantic -DDEBUG -fno-inline
4
5 number: ../src/number.h
6
7 # REGLAS
8 #########
9
10 .PHONY: clean
11
12 o_files = $(patsubst %.$(extension),%.o,$(fuentes))
13
14 clean:
15         @$(RM) -fv *.o $(target)
16