From 4d51494170805f753a31d215182c32a5fbdc7e3c Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Tue, 11 Apr 2017 22:49:22 +0430 Subject: the new mutator experimetal mutator feature. bruiser tries to break your code. --- bruiser/makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 bruiser/makefile (limited to 'bruiser/makefile') diff --git a/bruiser/makefile b/bruiser/makefile new file mode 100644 index 0000000..561da73 --- /dev/null +++ b/bruiser/makefile @@ -0,0 +1,29 @@ + +######################################INCLUDES################################# +include ../macros.mk + +#######################################VARS#################################### +CXX_FLAGS+= +BRUISER=bruiser + +######################################RULES#################################### +.DEFAULT: all + +.PHONY: all clean help $(BRUISER) + +all: $(BRUISER) + +.cpp.o: + $(CXX) $(CXX_FLAGS) -c $< -o $@ + +$(BRUISER): $(BRUISER).o ../mutator_aux.o + $(CXX) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(BRUISER) + +help: + @echo 'There is help.' + @echo 'All is the defualt target.' + @echo 'Clean runs clean.' + @echo 'For a more complete and detaild list of BUILD_MODE and other things look at the main makefiles help under project root.' -- cgit v1.2.3