diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-29 14:01:46 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-29 14:01:46 +0000 |
commit | d91d6b2f384e1142839fa036b1ccb0acc728ec30 (patch) | |
tree | d5bffae674e42dd573505de7b49ef6260b1c13f9 /test/bruisertest/makefile | |
parent | changed back (diff) | |
download | mutator-d91d6b2f384e1142839fa036b1ccb0acc728ec30.tar.gz mutator-d91d6b2f384e1142839fa036b1ccb0acc728ec30.zip |
fixed
Diffstat (limited to '')
-rw-r--r-- | test/bruisertest/makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/bruisertest/makefile b/test/bruisertest/makefile index c8b1c3e..1b0859b 100644 --- a/test/bruisertest/makefile +++ b/test/bruisertest/makefile @@ -1,14 +1,18 @@ BRUISER_TEST=test CXX?=clang++ +# you should change the include path to one that is right for you +CXX_FLAGS=-I/usr/lib/gcc/x86_64-redhat-linux/6.3.1/include .DEFAULT:all clean +.PHONY:all clean $(BRUISER_TEST) help + all:$(BRUISER_TEST) .cpp.o: - $(CXX) $(CXX_FLAGS) -c $< -o $@ -I/usr/include + $(CXX) $(CXX_FLAGS) -c $< -o $@ -$(BRUISER_TEST): test.cpp +$(BRUISER_TEST): test.o $(CXX) $^ $(LD_FLAGS) -o $@ clean: |