diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-10-17 13:48:37 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-10-17 13:48:37 +0000 |
| commit | dbf10047555503ae2331d979738eda01fbfdd0a9 (patch) | |
| tree | 1dab8629149e88ce88db41b98a831addb8ea5c79 | |
| parent | 794389cf5d0795b6a8fee8f752d53840aa57aa17 (diff) | |
Notes
| -rw-r--r-- | sbin/vinum/Makefile | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/sbin/vinum/Makefile b/sbin/vinum/Makefile index 7d0a0c285c93..961c10519e0e 100644 --- a/sbin/vinum/Makefile +++ b/sbin/vinum/Makefile @@ -1,23 +1,15 @@ +# $Id$ + PROG= vinum SRCS= v.c list.c parser.c util.c vext.h commands.c MAN8= vinum.8 -CFLAGS= -I${.CURDIR}/../../lkm/vinum -g -Wall -DDEBUG -DRAID5 - -LDADD+= -lutil -lreadline -ltermcap -# DPADD+= ${LIBKVM} +CFLAGS+= -I${.CURDIR}/../../lkm/vinum -g -Wall -DDEBUG -DRAID5 +DPADD= ${LIBUTIL} ${LIBREADLINE} ${LIBTERMCAP} +LDADD= -lutil -lreadline -ltermcap BINGRP= kmem BINMODE= 2555 -parser.c: - rm -f $@ - ln -s ${.CURDIR}/../../lkm/vinum/$@ . - -util.c: statetexts.h - rm -f $@ - ln -s ${.CURDIR}/../../lkm/vinum/$@ . - -statetexts.h: - (cd ${.CURDIR}/../../lkm/vinum; make $@) +.PATH: ${.CURDIR}/../../lkm/vinum .include <bsd.prog.mk> |
