From 514d2928bd7657abe84ff49664b637e0abe99744 Mon Sep 17 00:00:00 2001 From: Alan32Liu Date: Thu, 2 Jun 2022 10:44:40 +1000 Subject: [PATCH] Remove redundant tripwire from Makefile --- infra/experimental/sanitizers/ExecSan/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/experimental/sanitizers/ExecSan/Makefile b/infra/experimental/sanitizers/ExecSan/Makefile index 568f69fe3..079a76147 100644 --- a/infra/experimental/sanitizers/ExecSan/Makefile +++ b/infra/experimental/sanitizers/ExecSan/Makefile @@ -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