summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulian Blake Kongslie <jblake@omgwallhack.org>2013-04-11 22:11:58 -0700
committerJulian Blake Kongslie <jblake@omgwallhack.org>2013-04-11 22:11:58 -0700
commit09918cfe4f1f75bef96d5179e37d88f247baf781 (patch)
treeab5a8be2536cc64452fe11cad8c44ead8bab8842 /Makefile
parent06a19bdd081d1b81cbca7c7b675f5cf3637063a1 (diff)
downloadinsecuresuexec-09918cfe4f1f75bef96d5179e37d88f247baf781.tar.gz
insecuresuexec-09918cfe4f1f75bef96d5179e37d88f247baf781.zip
Adding a whole lot of debugging messages.
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