diff options
author | bloodstalker <thabogre@gmail.com> | 2017-11-11 21:46:20 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-11-11 21:46:20 +0000 |
commit | e09015638ece23f06f34a553d8615c86b3be0712 (patch) | |
tree | c74a1f38bef5b24b3da19adbf2b9b18b4ad186eb /obfuscator/makefile | |
parent | fix (diff) | |
download | mutator-e09015638ece23f06f34a553d8615c86b3be0712.tar.gz mutator-e09015638ece23f06f34a553d8615c86b3be0712.zip |
added obfuscator, some minor changes made to load.py so it would be easier to call python scripts from lua, general changes for a new project
Diffstat (limited to '')
-rw-r--r-- | obfuscator/makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/obfuscator/makefile b/obfuscator/makefile new file mode 100644 index 0000000..dee61e2 --- /dev/null +++ b/obfuscator/makefile @@ -0,0 +1,27 @@ + +######################################INCLUDES################################# +include ../macros.mk + +#######################################VARS#################################### +OBSC=obfuscator +######################################RULES#################################### +.DEFAULT: all + +.PHONY: all clean help $(OBSC) + +all: $(OBSC) + +.cpp.o: + $(CXX) $(CXX_FLAGS) -c $< -o $@ + +$(OBSC): $(OBSC).o ../mutator_aux.o + $(CXX) $^ $(LD_FLAGS) -o $@ + +clean: + rm -f *.o *~ $(OBSC) + +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.' |