diff options
| author | vanhauser-thc <vh@thc.org> | 2023-02-15 09:32:32 +0100 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2023-02-15 09:32:32 +0100 |
| commit | 668f5e1fa9c126bb8c751a6e4ef038ae60a442fa (patch) | |
| tree | 362993e4efc4e08489f9ccf47fbf2ed9f227ee33 /custom_mutators/autotokens/Makefile | |
| parent | 80eabd6e8a30c2ffc0f084ab34df8b9d582419c3 (diff) | |
| download | afl++-668f5e1fa9c126bb8c751a6e4ef038ae60a442fa.tar.gz | |
debug output
Diffstat (limited to 'custom_mutators/autotokens/Makefile')
| -rw-r--r-- | custom_mutators/autotokens/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/custom_mutators/autotokens/Makefile b/custom_mutators/autotokens/Makefile index 6ee7d324..0daba17d 100644 --- a/custom_mutators/autotokens/Makefile +++ b/custom_mutators/autotokens/Makefile @@ -13,10 +13,14 @@ endif all: autotokens.so -autotokens.so: autotokens.cpp +afl-fuzz-queue.o: ../../src/afl-fuzz-queue.c $(CC) -D_STANDALONE_MODULE=1 -I../../include -g -O3 $(CPPFLAGS) -fPIC -c -o ./afl-fuzz-queue.o ../../src/afl-fuzz-queue.c + +afl-common.o: ../../src/afl-common.c $(CC) -I../../include -g -O3 $(CPPFLAGS) -DBIN_PATH=\"dummy\" -Wno-pointer-sign -fPIC -c -o ./afl-common.o ../../src/afl-common.c + +autotokens.so: afl-fuzz-queue.o afl-common.o autotokens.cpp $(CXX) -Wno-deprecated -g -O3 $(CXXFLAGS) $(CPPFLAGS) -shared -fPIC -o autotokens.so -I../../include autotokens.cpp ./afl-fuzz-queue.o ../../src/afl-performance.o ./afl-common.o clean: - rm -f autotokens.so *~ core + rm -f autotokens.so *.o *~ core |
