diff options
Diffstat (limited to 'usr.sbin/pcvt')
-rw-r--r-- | usr.sbin/pcvt/kbdio/Makefile | 12 | ||||
-rw-r--r-- | usr.sbin/pcvt/vgaio/Makefile | 9 |
2 files changed, 11 insertions, 10 deletions
diff --git a/usr.sbin/pcvt/kbdio/Makefile b/usr.sbin/pcvt/kbdio/Makefile index 4576c4e..c67b3f6 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 diff --git a/usr.sbin/pcvt/vgaio/Makefile b/usr.sbin/pcvt/vgaio/Makefile index de3e661..3991d9d 100644 --- a/usr.sbin/pcvt/vgaio/Makefile +++ b/usr.sbin/pcvt/vgaio/Makefile @@ -1,4 +1,3 @@ - .if !exists(${.CURDIR}/../Makefile.inc) error: @echo @@ -13,19 +12,21 @@ error: PROG= vgaio MAN8= vgaio.${MAN8EXT} -SRCS= vgaio.y lex.l +SRCS= vgaio.c lex.c YACC= yacc #YFLAGS+= -yd # Bison #YFLAGS+= -v # verbose LFLAGS+= -I + +DPADD= ${LIBM} ${LIBY} ${LIBL} LDADD= -lm -ly -ll CFLAGS= -O2 # due to a gcc bug, it compiles only with -O2! -CFLAGS+= -I ${.CURDIR}/obj -I ${.CURDIR} -g +CFLAGS+= -I${.CURDIR}/obj -I${.CURDIR} -g -CLEANFILES+= y.tab.h +CLEANFILES+= lex.c lex.yy.c vgaio.c y.tab.[ch] CLEANFILES+= y.output # comment file from bison install: |