summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 10107f0..ff256cf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,12 @@
+default: insecuresuexec insecuresuexec-noisy
+
insecuresuexec: main.cc
clang++ -Wall -Werror -std=c++11 -Os -o $@ $+
+insecuresuexec-noisy: main.cc
+ clang++ -Wall -Werror -std=c++11 -Os -o $@ -DNOISY $+
+
clean:
- rm -f insecuresuexec
+ rm -f insecuresuexec insecuresuexec-noisy
.PHONY: clean