blob: ab1da4b6e89c582e8047b086abac9811d7bd9509 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
ifdef debug
CFLAGS += -fsanitize=address -Wall
CXX := clang++
endif
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
|