File size: 234 Bytes
e0351e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | .POSIX:
CXX = clang++
CFLAGS = -std=c++17 -Wall -Wextra -O3 -g3
SystemSan: SystemSan.cpp
$(CXX) $(CFLAGS) -lpthread -o $@ $^
run: clean SystemSan target.js
./SystemSan jsfuzz ./target.js
clean:
rm -f SystemSan /tmp/tripwire
|