Remove redundant tripwire from Makefile

This commit is contained in:
Alan32Liu 2022-06-02 10:44:40 +10:00
parent d8a7e45314
commit 514d2928bd
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
CXX = clang++
CFLAGS = -std=c++17 -Wall -Wextra -O3 -g3
all: clean execSan tripwire target
all: clean execSan target
execSan: execSan.cpp
$(CXX) $(CFLAGS) -lpthread -o $@ $^
@ -14,4 +14,4 @@ test: all vuln.dict
./execSan ./target -dict=vuln.dict
clean:
rm -f execSan /tmp/tripwire target
rm -f execSan /tmp/tripwire target