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

clean:
	rm -f insecuresuexec

.PHONY: clean