xref: /dragonfly/sbin/vinum/Makefile (revision 984263bc)
1*984263bcSMatthew Dillon# $FreeBSD: src/sbin/vinum/Makefile,v 1.12.2.2 2001/08/01 09:13:24 obrien Exp $
2*984263bcSMatthew Dillon
3*984263bcSMatthew DillonMAINTAINER  =  grog@FreeBSD.org
4*984263bcSMatthew DillonPROG=	vinum
5*984263bcSMatthew DillonSRCS=	v.c list.c vinumparser.c vinumutil.c vext.h commands.c
6*984263bcSMatthew DillonMAN=	vinum.8
7*984263bcSMatthew Dillon
8*984263bcSMatthew DillonCFLAGS+=	-I${.CURDIR}/../../sys -Wall -DVINUMDEBUG
9*984263bcSMatthew DillonDPADD=	${LIBUTIL} ${LIBREADLINE} ${LIBTERMCAP}
10*984263bcSMatthew DillonLDADD=	-lreadline -ltermcap -ldevstat
11*984263bcSMatthew Dillon
12*984263bcSMatthew Dillon.PATH: ${.CURDIR}/../../sys/dev/vinum
13*984263bcSMatthew Dillon
14*984263bcSMatthew Dillon.include <bsd.prog.mk>
15