Add missing library dependencies and sort libraries

using lorder(1) so that static linkage is possible.
This commit is contained in:
Ruslan Ermilov 2007-01-30 15:10:37 +00:00
parent e2f227fbaa
commit 7d3017efd2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166355

View File

@ -3,7 +3,7 @@
PROG= gstat
MAN= gstat.8
WARNS?= 5
DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBBSDXML} ${LIBCURSES} ${LIBEDIT}
LDADD= -lgeom -ldevstat -lbsdxml -lcurses -ledit
DPADD= ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBEDIT} ${LIBCURSES}
LDADD= -ldevstat -lkvm -lgeom -lbsdxml -lsbuf -ledit -lcurses
.include <bsd.prog.mk>