mirror of
https://github.com/opnsense/src.git
synced 2026-03-19 17:29:02 -04:00
12 lines
340 B
Makefile
12 lines
340 B
Makefile
# $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>
|