aboutsummaryrefslogtreecommitdiff
path: root/sbin/gbde
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-04-16 11:54:11 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-04-16 11:54:11 +0000
commit5ea3e2396516f076307ab19f1d9a5b6f708c995f (patch)
tree5101f67c3e23b1aa26f88ef3a2f3c562c43d4b10 /sbin/gbde
parent9d05db9df5870ae2c768c36a1f2af9274811be08 (diff)
downloadsrc-5ea3e2396516f076307ab19f1d9a5b6f708c995f.tar.gz
src-5ea3e2396516f076307ab19f1d9a5b6f708c995f.zip
Normalize, fix ``make checkdpadd''.
Notes
Notes: svn path=/head/; revision=113558
Diffstat (limited to 'sbin/gbde')
-rw-r--r--sbin/gbde/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/sbin/gbde/Makefile b/sbin/gbde/Makefile
index efc17b62e652..25fe7d8eef1f 100644
--- a/sbin/gbde/Makefile
+++ b/sbin/gbde/Makefile
@@ -23,13 +23,14 @@ CFLAGS+= -I${.CURDIR}/../../sys
CLEANFILES+= template.c
MAN= gbde.8
-LDADD= -lmd -lutil -lgeom -lbsdxml -lsbuf
+DPADD= ${LIBMD} ${LIBUTIL} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
+LDADD= -lmd -lutil -lgeom -lbsdxml -lsbuf
-.include <bsd.prog.mk>
-
-template.c: template.txt
+template.c: template.txt
file2c 'const char template[] = {' ',0};' \
< ${.CURDIR}/template.txt > template.c
-test: ${PROG}
+test: ${PROG}
sh ${.CURDIR}/test.sh
+
+.include <bsd.prog.mk>