diff options
| author | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-04-21 12:23:18 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@serenitascapital.com> | 2016-04-21 12:23:18 -0400 |
| commit | 59748691185c8e80e503ece0f95a7703e71b767f (patch) | |
| tree | 745631a74f4d8af66aa8c1883ff7043e94003490 | |
| parent | 251a9e936345b7b7f7600cec27c420317247ad79 (diff) | |
| download | projet_C++-59748691185c8e80e503ece0f95a7703e71b767f.tar.gz | |
fix the Makefile
| -rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -10,14 +10,18 @@ GSL_FLAGS:=$(shell pkg-config --libs gsl) NLOPT_FLAGS:=$(shell pkg-config --libs nlopt) VPATH = src:doc +.PHONY: clean tables + all: rapport.pdf -rapport.pdf: rapport.tex table.tex table2.tex +rapport.pdf: rapport.tex tables latexmk -cd -lualatex $< +tables: table.tex table2.tex + table.tex: projet ./projet - + table2.tex: projet ./projet @@ -26,12 +30,10 @@ projet: projet.o stratified_sampling.o mt19937.o var_alea.o opti.o rqmc.o p_adic stratified_sampling.o: stratified_sampling.hpp -rqmc.o: rqmc.hpp +rqmc.o: rqmc.hpp p_adic.o: low_discrepancy.hpp -.PHONY: clean - clean: -$(RM) -f *.o test stratified_sampling projet option make_table - -cd doc; latexmk -C + -cd doc; rm table.tex table2.tex; latexmk -C |
