mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-22 16:44:32 +01:00
2eb4b00cbb
Discussed with: erwin, brooks, bapt
14 lines
202 B
Makefile
14 lines
202 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_info
|
|
SRCS= main.c perform.c show.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../lib
|
|
|
|
WFORMAT?= 1
|
|
|
|
DPADD= ${LIBINSTALL} ${LIBFETCH} ${LIBMD}
|
|
LDADD= ${LIBINSTALL} -lfetch -lmd
|
|
|
|
.include <bsd.prog.mk>
|