blob: 8af636357721faf3da386d782a51f7cec1d212ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
ifdef debug
CFLAGS += "-fsanitize=address -Wall"
CXX := clang++
endif
all: autotokens.so
autotokens.so: autotokens.cpp
$(CXX) -g -O3 $(CFLAGS) -shared -fPIC -o autotokens.so -I../../include autotokens.cpp ../../src/afl-performance.o
clean:
rm -f autotokens.so *~ core
|