diff options
| -rw-r--r-- | usr.bin/ktrdump/Makefile | 1 | ||||
| -rw-r--r-- | usr.sbin/ancontrol/Makefile | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ktrdump/Makefile b/usr.bin/ktrdump/Makefile index 2a6ab3358513..6b5ff127165f 100644 --- a/usr.bin/ktrdump/Makefile +++ b/usr.bin/ktrdump/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PROG= ktrdump +DPADD= ${LIBKVM} LDADD= -lkvm MAN= ktrdump.8 diff --git a/usr.sbin/ancontrol/Makefile b/usr.sbin/ancontrol/Makefile index 696af713b323..f5a89afde14e 100644 --- a/usr.sbin/ancontrol/Makefile +++ b/usr.sbin/ancontrol/Makefile @@ -4,7 +4,8 @@ PROG= ancontrol MAN= ancontrol.8 CFLAGS+= -I${.CURDIR}/../../sys -DANCACHE -LDADD+= -lmd +DPADD= ${LIBMD} +LDADD= -lmd WARNS?= 2 |
