diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-29 14:39:53 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-29 14:39:53 +0000 |
commit | 3fdc87fcd86803603ff8cf58e23dfdeafcffec82 (patch) | |
tree | 17fa158fdcabbfab08a3a8a77fc57a73051b2d9f /test/m0-cpp-smoke/makefile | |
parent | Merge branch 'master' of https://github.com/bloodstalker/mutator (diff) | |
download | mutator-3fdc87fcd86803603ff8cf58e23dfdeafcffec82.tar.gz mutator-3fdc87fcd86803603ff8cf58e23dfdeafcffec82.zip |
smoke test for m0 cpp
Diffstat (limited to '')
-rw-r--r-- | test/m0-cpp-smoke/makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/m0-cpp-smoke/makefile b/test/m0-cpp-smoke/makefile new file mode 100644 index 0000000..dfec4a2 --- /dev/null +++ b/test/m0-cpp-smoke/makefile @@ -0,0 +1,24 @@ +TARGET=m0-cpp-smoke +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 -std=c++14 + +.DEFAULT:all clean + +.PHONY:all clean $(TARGET) help + +all:$(TARGET) + +.cpp.o: + $(CXX) $(CXX_FLAGS) -c $< -o $@ + +$(TARGET): m0-cpp-smoke.o + $(CXX) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(TARGET) + +help: + @echo "the makfile for the bruiser test file." + @echo "there is the taget itself, all and clean." + |