NetBSD/sys/arch/sgimips/stand/sgivol/Makefile
ginsbach d357be2474 Fix the build of sgivol as a host tool on a platform without libutil,
e.g. MacOS X.  Identical to method used in the disklabel(8) Makefile.
2005-12-23 03:28:10 +00:00

14 lines
194 B
Makefile

# $NetBSD: Makefile,v 1.6 2005/12/23 03:28:10 ginsbach Exp $
NOMAN= # defined
PROG= sgivol
.if (${HOSTPROG:U} == "")
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.endif
WARNS= 2
.include <bsd.prog.mk>