mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-07 15:51:32 +00:00
58 lines
2.3 KiB
Makefile
58 lines
2.3 KiB
Makefile
ifeq "" "$(LLVM_CONFIG)"
|
|
LLVM_CONFIG=llvm-config
|
|
endif
|
|
|
|
ifeq "$(shell uname -s)" "Darwin"
|
|
# On some odd MacOS system configurations, the Xcode sdk path is not set correctly
|
|
SDK_LD = -L$(shell xcrun --show-sdk-path)/usr/lib
|
|
LDFLAGS += $(SDK_LD)
|
|
endif
|
|
|
|
ifeq "" "$(LLVM_CONFIG)"
|
|
LLVM_CONFIG := llvm-config
|
|
endif
|
|
LLVM_BINDIR = $(shell $(LLVM_CONFIG) --bindir 2>/dev/null)
|
|
ifneq "" "$(LLVM_BINDIR)"
|
|
ifeq "$(shell test -x $(LLVM_BINDIR)/clang && echo 1)" "1"
|
|
CC := $(LLVM_BINDIR)/clang
|
|
endif
|
|
endif
|
|
|
|
CFLAGS := -O3 -funroll-loops -g -fPIC
|
|
|
|
all: libAFLDriver.a libAFLQemuDriver.a aflpp_qemu_driver_hook.so
|
|
|
|
aflpp_driver.o: aflpp_driver.c
|
|
-$(CC) -I. -I../../include $(CFLAGS) -c aflpp_driver.c
|
|
|
|
libAFLDriver.a: aflpp_driver.o
|
|
@ar rc libAFLDriver.a aflpp_driver.o
|
|
@cp -vf libAFLDriver.a ../../
|
|
|
|
debug:
|
|
$(CC) -Wno-deprecated -I../../include $(CFLAGS) -D_DEBUG=\"1\" -c -o afl-performance.o ../../src/afl-performance.c
|
|
$(CC) -I../../include -D_DEBUG=\"1\" -g -funroll-loops -c aflpp_driver.c
|
|
#$(CC) -S -emit-llvm -Wno-deprecated -I../../include $(CFLAGS) -D_DEBUG=\"1\" -c -o afl-performance.ll ../../src/afl-performance.c
|
|
#$(CC) -S -emit-llvm -I../../include -D_DEBUG=\"1\" -g -funroll-loops -c aflpp_driver.c
|
|
ar rc libAFLDriver.a afl-performance.o aflpp_driver.o
|
|
|
|
aflpp_qemu_driver.o: aflpp_qemu_driver.c
|
|
-$(CC) $(CFLAGS) -O0 -funroll-loops -c aflpp_qemu_driver.c
|
|
|
|
libAFLQemuDriver.a: aflpp_qemu_driver.o
|
|
@-ar rc libAFLQemuDriver.a aflpp_qemu_driver.o
|
|
@-cp -vf libAFLQemuDriver.a ../../
|
|
|
|
aflpp_qemu_driver_hook.so: aflpp_qemu_driver_hook.o
|
|
@-test -e aflpp_qemu_driver_hook.o && $(CC) $(LDFLAGS) -shared aflpp_qemu_driver_hook.o -o aflpp_qemu_driver_hook.so || echo "Note: Optional aflpp_qemu_driver_hook.so not built."
|
|
|
|
aflpp_qemu_driver_hook.o: aflpp_qemu_driver_hook.c
|
|
@-test -e ../../qemu_mode/qemuafl/qemuafl/api.h && $(CC) $(CFLAGS) -funroll-loops -c aflpp_qemu_driver_hook.c || echo "Note: Optional aflpp_qemu_driver_hook.o not built."
|
|
|
|
test: debug
|
|
#clang -S -emit-llvm -D_DEBUG=\"1\" -I../../include -Wl,--allow-multiple-definition -funroll-loops -o aflpp_driver_test.ll aflpp_driver_test.c
|
|
afl-clang-fast -D_DEBUG=\"1\" -I../../include -Wl,--allow-multiple-definition -funroll-loops -o aflpp_driver_test aflpp_driver_test.c libAFLDriver.a afl-performance.o
|
|
|
|
clean:
|
|
rm -f *.o libAFLDriver*.a libAFLQemuDriver.a aflpp_qemu_driver_hook.so *~ core aflpp_driver_test
|