diff options
author | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-04 20:09:06 +0000 |
commit | f701fbc7d569ab22a7d57c4c0cba391bad3d755d (patch) | |
tree | 5d6f5afb81bfecb644f11f70cc59cbe58b46169b /usr.sbin/pcvt/vgaio | |
parent | 4c2ff0579d45e8f11accb16489583563b979e4fb (diff) | |
download | FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.zip FreeBSD-src-f701fbc7d569ab22a7d57c4c0cba391bad3d755d.tar.gz |
Fixed races in `make -jN' using new yacc rules.
Diffstat (limited to 'usr.sbin/pcvt/vgaio')
-rw-r--r-- | usr.sbin/pcvt/vgaio/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/pcvt/vgaio/Makefile b/usr.sbin/pcvt/vgaio/Makefile index 53083e0..e9674de 100644 --- a/usr.sbin/pcvt/vgaio/Makefile +++ b/usr.sbin/pcvt/vgaio/Makefile @@ -12,7 +12,7 @@ error: PROG= vgaio MAN8= vgaio.${MAN8EXT} -SRCS= vgaio.c lex.c +SRCS= vgaio.y lex.l YACC= yacc #YFLAGS+= -yd # Bison @@ -26,7 +26,6 @@ LDADD= -lm -ly -ll CFLAGS= -O2 # due to a gcc bug, it compiles only with -O2! CFLAGS+= -I${.OBJDIR} -I${.CURDIR} -CLEANFILES+= lex.c lex.yy.c vgaio.c y.tab.[ch] CLEANFILES+= y.output # comment file from bison install: |