d82881651b
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.
14 lines
189 B
Makefile
14 lines
189 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_create
|
|
SRCS= main.c perform.c pl.c
|
|
|
|
CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib
|
|
|
|
WARNS?= 2
|
|
|
|
DPADD= ${LIBINSTALL} ${LIBMD}
|
|
LDADD= ${LIBINSTALL} -lmd
|
|
|
|
.include <bsd.prog.mk>
|