diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ default: insecuresuexec insecuresuexec-noisy insecuresuexec: main.cc - clang++ -Wall -Werror -std=c++11 -Os -o $@ $+ + g++ -Wall -Werror -std=c++11 -Os -o $@ $+ insecuresuexec-noisy: main.cc - clang++ -Wall -Werror -std=c++11 -Os -o $@ -DNOISY $+ + g++ -Wall -Werror -std=c++11 -Os -o $@ -DNOISY $+ clean: rm -f insecuresuexec insecuresuexec-noisy |