diff options
author | bloodstalker <thabogre@gmail.com> | 2018-08-09 13:40:50 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-08-09 13:40:50 +0000 |
commit | a9b5727e468b68936f10bdf80a4f40801a368c52 (patch) | |
tree | a42c43fd0f33402f4b4237f12cdba96a92f9306a /obfuscator/makefile | |
parent | faultreiber is a submodule now. it generates binary file format parsers in C.... (diff) | |
download | mutator-a9b5727e468b68936f10bdf80a4f40801a368c52.tar.gz mutator-a9b5727e468b68936f10bdf80a4f40801a368c52.zip |
WIP-added keccak-tiny to obfuscator
Diffstat (limited to '')
-rw-r--r-- | obfuscator/makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/obfuscator/makefile b/obfuscator/makefile index 9a9981f..960fb80 100644 --- a/obfuscator/makefile +++ b/obfuscator/makefile @@ -23,11 +23,18 @@ depend: .depend .cpp.o: $(CXX) -v $(CXX_FLAGS) -c $< -o $@ -$(OBSC): $(OBSC).o ../mutator_aux.o +./keccak-tiny/.o:./keccak-tiny/.c + $(CC) $(CC_FLAGS) -c $< -o $@ + +$(OBSC): $(OBSC).o ../mutator_aux.o ./keccak-tiny/keccak-tiny.o $(CXX) -v $^ $(LD_FLAGS) -o $@ clean: - rm -f *.o *~ $(OBSC) + rm -f *.o *~ $(OBSC) *.out ./keccak-tiny/*.o + rm ./.depend + +deepclean: + rm -f *.o *~ $(OBSC) *.out FILE*.cpp FILE*.hpp ./keccak-tiny/*.o rm ./.depend help: |