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 $@ $^