mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -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
184 B
Makefile
13 lines
184 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_delete
|
|
SRCS= main.c perform.c
|
|
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
WARNS?= 4
|
|
|
|
DPADD= ${LIBINSTALL} ${LIBMD}
|
|
LDADD= ${LIBINSTALL} -lmd
|
|
|
|
.include <bsd.prog.mk>
|