freebsd-dev/sbin/vinum/Makefile
Greg Lehey da50f5ed31 Remove -DVINUMDEBUG. vinum(8) now always supports debug options if
the kernel module is built that way.
2001-05-23 05:24:53 +00:00

18 lines
360 B
Makefile

# $FreeBSD$
PROG= vinum
SRCS= v.c list.c vinumparser.c vinumutil.c vext.h commands.c
MAN= vinum.8
CFLAGS+= -I${.CURDIR}/../../sys -Wall
# Print __FILE__ and __LINE__ when doing perror()
#CFLAGS+= -DDEVBUG
DPADD= ${LIBREADLINE} ${LIBTERMCAP} ${LIBDEVSTAT}
LDADD= -lreadline -ltermcap -ldevstat
.PATH: ${.CURDIR}/../../sys/dev/vinum
.include <bsd.prog.mk>