mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-09 00:31:33 +00:00
17 lines
303 B
Makefile
17 lines
303 B
Makefile
CFLAGS += -Wall -Werror -Wextra -Wpedantic -Og -g -fPIE
|
|
|
|
.PHONY: all clean
|
|
|
|
all: target target.offsets.main
|
|
|
|
clean:
|
|
rm -rf *.o target target.offsets.*
|
|
|
|
target.o: target.c
|
|
${CC} ${CFLAGS} -c target.c -o $@
|
|
|
|
target: target.o
|
|
${CC} ${CFLAGS} target.o -o $@
|
|
|
|
target.offsets.main: target
|
|
./get_offsets.py
|