mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 01:31:45 -05:00
package management tools. - Drop redundant dependency of pkg_create(1) and pkg_delete(1) on crypto libraries now that they do not link with libfetch.
13 lines
209 B
Makefile
13 lines
209 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_info
|
|
SRCS= main.c perform.c show.c
|
|
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
WARNS?= 2
|
|
|
|
DPADD= ${LIBINSTALL} ${LIBFETCH} ${LIBMD}
|
|
LDADD= ${LIBINSTALL} -lfetch -lmd
|
|
|
|
.include <bsd.prog.mk>
|