]> ruderich.org/simon Gitweb - ptyas/ptyas.git/blob - Makefile
drop_privileges_or_die: improve error message in die_fmt
[ptyas/ptyas.git] / Makefile
1 CFLAGS := -g -O2 -fPIE -fstack-protector-strong -Wall -Wextra -Wconversion $(CFLAGS)
2 CPPFLAGS := -D_FORTIFY_SOURCE=2 $(CPPFLAGS)
3 LDFLAGS := -fPIE -pie -Wl,-z,relro -Wl,-z,now $(LDFLAGS)
4
5
6 ptyas: ptyas.c
7
8 clean:
9         rm -f ptyas
10
11 .PHONY: clean