summaryrefslogtreecommitdiff
path: root/Makefile
blob: ff256cf15dda349a0b30578acb44a9f2616f66bb (plain)
1
2
3
4
5
6
7
8
9
10
11
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 insecuresuexec-noisy

.PHONY: clean