diff options
author | tomsmeding <hallo@tomsmeding.nl> | 2015-04-27 11:55:16 +0200 |
---|---|---|
committer | tomsmeding <hallo@tomsmeding.nl> | 2015-04-27 11:55:16 +0200 |
commit | fd1da450d5ccc95db53c5eb9c26f84a3a336a1c4 (patch) | |
tree | 8afee65c74ee1905eaffa4b0b66288e37204457e | |
parent | 763d469362032d801ffd1b16d84b3fb4e424e1d2 (diff) |
Fix makefile
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1,6 +1,11 @@ -.PHONY: all +.PHONY: all clean -all: neutrino randino gluon photon +BINARIES = neutrino randino gluon photon viewcompetition + +all: $(BINARIES) + +clean: + rm $(BINARIES) neutrino: neutrino.cc higgs.o g++ -Wall -std=c++11 -O2 -o neutrino neutrino.cc higgs.o @@ -16,3 +21,6 @@ randino: randino.cpp higgs.o: higgs.cc g++ -Wall -std=c++11 -O2 -c -o higgs.o higgs.cc + +viewcompetition: viewcompetition.cpp + g++ -Wall -std=c++11 -O2 -o viewcompetition viewcompetition.cpp |