diff options
Diffstat (limited to 'test/bruisertest/makefile')
-rw-r--r-- | test/bruisertest/makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/bruisertest/makefile b/test/bruisertest/makefile new file mode 100644 index 0000000..cb237e4 --- /dev/null +++ b/test/bruisertest/makefile @@ -0,0 +1,21 @@ +include ../../macros.mk + +BRUISER_TEST=test + +.DEFAULT:all clean + +all:$(BRUISER_TEST) + +.cpp.o: + $(CXX) $(CXX_FLAGS) -c $< -o $@ + +$(BRUISER_TEST): test.cpp + $(CXX) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(BRUISER_TEST) + +help: + @echo "the makfile for the bruiser test file." + @echo "there is the taget itself, all and clean." + |