diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2013-04-11 22:11:58 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2013-04-11 22:11:58 -0700 |
commit | 09918cfe4f1f75bef96d5179e37d88f247baf781 (patch) | |
tree | ab5a8be2536cc64452fe11cad8c44ead8bab8842 /Makefile | |
parent | 06a19bdd081d1b81cbca7c7b675f5cf3637063a1 (diff) | |
download | insecuresuexec-09918cfe4f1f75bef96d5179e37d88f247baf781.tar.gz insecuresuexec-09918cfe4f1f75bef96d5179e37d88f247baf781.zip |
Adding a whole lot of debugging messages.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |