diff options
author | Pjotr Prins | 2017-07-11 08:59:33 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-07-11 08:59:33 +0000 |
commit | e415101f7cb6b3e45a2bf49e3f60aa133cbc6517 (patch) | |
tree | c11bfbc0eba7627e201f73a99d841df9ce8c043b | |
parent | 6cb25f227b0d42a1268c51542f96b9ffafba0bbb (diff) | |
download | pangemma-e415101f7cb6b3e45a2bf49e3f60aa133cbc6517.tar.gz |
Makefile: compile without -Weffc++ as suggested by https://stackoverflow.com/questions/11496942/understanding-weffc#11529328 reduces warnings
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,7 @@ SRC_DIR = ./src CPP = g++ -CPPFLAGS = -Wall -Weffc++ -O3 -std=gnu++11 -I$(EIGEN_INCLUDE_PATH) +CPPFLAGS = -Wall -O3 -std=gnu++11 -I$(EIGEN_INCLUDE_PATH) ifdef FORCE_DYNAMIC LIBS = -lgsl -lgslcblas -pthread -lz @@ -104,6 +104,7 @@ $(OBJS) : $(HDR) check: all cd test && ./test_suite.sh | tee ../test.log grep -q 'success rate: 100%' test.log + clean: rm -rf ${SRC_DIR}/*.o ${SRC_DIR}/*~ *~ $(OUTPUT) |