aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pcvt/kbdio
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-09-28 18:23:44 +0000
committerBruce Evans <bde@FreeBSD.org>1995-09-28 18:23:44 +0000
commit691cda9ce1aec0bb365c730df13e402ff0b2e940 (patch)
treed5d4acb0a971f560036af7df10cec9a3fa4d0ce8 /usr.sbin/pcvt/kbdio
parent2b326c58f606e22a48b39210cf68acc3071e5b61 (diff)
Notes
Diffstat (limited to 'usr.sbin/pcvt/kbdio')
-rw-r--r--usr.sbin/pcvt/kbdio/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pcvt/kbdio/Makefile b/usr.sbin/pcvt/kbdio/Makefile
index 4576c4eae738..c67b3f650e8e 100644
--- a/usr.sbin/pcvt/kbdio/Makefile
+++ b/usr.sbin/pcvt/kbdio/Makefile
@@ -1,4 +1,3 @@
-
.if !exists(${.CURDIR}/../Makefile.inc)
error:
@echo
@@ -11,21 +10,24 @@ error:
.else
PROG= kbdio
-SRCS= kbdio.y lex.l
+SRCS= kbdio.c lex.c
#YACC= bison
#YFLAGS+= -yd # Bison only
YFLAGS+= -v # verbose
+
LFLAGS+= -I
+
+DPADD= ${LIBM} ${LIBY} ${LIBL}
LDADD= -lm -ly -ll
NOMAN=
NOSHARED= no shared linkage
-CFLAGS+= -I ${.CURDIR}/obj -I ${.CURDIR} #-g
+CFLAGS+= -I${.CURDIR}/obj -I${.CURDIR} #-g
-CLEANFILES+= y.tab.h
+CLEANFILES+= kbdio.c lex.c lex.yy.c y.tab.[ch]
CLEANFILES+= y.output # comment file from bison
install:
@@ -33,6 +35,4 @@ install:
.include <bsd.prog.mk>
-lex.o: y.tab.h lex.l
-
.endif