summaryrefslogtreecommitdiff
path: root/Makefile
blob: 43d9995cd6dba78128a781c8dbaf0c60bc4e25f2 (plain)
1
2
3
4
5
6
7
insecuresuexec: main.c
	clang -Wall -Werror -Os -o $@ $+

clean:
	rm -f insecuresuexec

.PHONY: clean