blob: 5a3565a95f1b481f79b32d6316498e4c93811679 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $FreeBSD$
PROG= kgzip
SRCS= kgzip.c elfhdr.c kgzcmp.c kgzld.c xio.c
MAN8= kgzip.8
CFLAGS+=-pedantic \
-W -Wall -Waggregate-return -Wbad-function-cast -Wcast-align \
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
-Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes \
-Wwrite-strings
.include <bsd.prog.mk>
|