Testing web server.
[Prjinfo.git] / Makefile
blob4318495343443da880fccfa22e217253f3abd5e1
1 # Makefile pour le développement du projet d'informatique II 2010
2 # Damien Nguyen et Etienne Wodey
4 SHELL = /bin/sh
5 .PHONY: clean, mrproper
6 .SUFFIXES:
8 # testing module
9 .PHONY: testing-math-vector
10 testing-math-vector:
11 make -C testing math-vector
13 .PHONY: testing-math-vector3
14 testing-math-vector3:
15 make -C testing math-vector3
17 .PHONY: testing-math-sqmatrix3
18 testing-math-sqmatrix3:
19 make -C testing math-sqmatrix3
21 # math lib
22 .PHONY: math
23 math:
24 make -C math
26 # cleaning directories
27 clean:
28 make -C math clean
29 make -C testing clean
31 mrproper: clean
32 make -C math mrproper