mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -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.
16 lines
235 B
Makefile
16 lines
235 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_version
|
|
SRCS= main.c perform.c
|
|
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
WARNS?= 2
|
|
|
|
DPADD= ${LIBINSTALL} ${LIBFETCH} ${LIBMD}
|
|
LDADD= ${LIBINSTALL} -lfetch -lmd
|
|
|
|
test:
|
|
./test-pkg_version.sh
|
|
|
|
.include <bsd.prog.mk>
|