summaryrefslogtreecommitdiff
path: root/Makefile
blob: 10107f0ab2fff26a8d2e71dfe5fceee05a974f2b (plain)
1
2
3
4
5
6
7
insecuresuexec: main.cc
	clang++ -Wall -Werror -std=c++11 -Os -o $@ $+

clean:
	rm -f insecuresuexec

.PHONY: clean