diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-05-30 22:54:10 +0000 | 
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-05-30 22:54:10 +0000 | 
| commit | 96b2fceafff6a4a18af521bd3a346904dcb80028 (patch) | |
| tree | f16504aff60a2542f2a7b606c0a71ebc627ffadf /lib | |
| parent | fb808b4cb8d74662f2cc1ee0f4df23bf663bae52 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libforms/Makefile | 2 | ||||
| -rw-r--r-- | lib/libforms/lex.l | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/libforms/Makefile b/lib/libforms/Makefile index 36b0c4f88f83..580fd7ae6ba8 100644 --- a/lib/libforms/Makefile +++ b/lib/libforms/Makefile @@ -7,7 +7,7 @@ SRCS = debug.c bindings.c parser.y lex.l forms.c objects.c ncurses.c  CFLAGS += -I. -I${.CURDIR} -DHASH_STATS #-g -DDEBUG -Wall -ansi -pedantic -Dlint  LDFLAGS += -ll -CLEANFILES+= lex.c parser.c y.tab.h +CLEANFILES+= lex.c parser.c parser.tab.h  beforeinstall:  	@(cd ${.CURDIR}; cmp -s forms.h ${DESTDIR}/usr/include/forms.h || \ diff --git a/lib/libforms/lex.l b/lib/libforms/lex.l index 7aa03512ef7b..ef626c328293 100644 --- a/lib/libforms/lex.l +++ b/lib/libforms/lex.l @@ -36,7 +36,7 @@  #include <string.h>  #include <unistd.h> -#include "y.tab.h" +#include "parser.tab.h"  extern int lineno;  extern int charno;  extern int off; | 
