diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-06-02 17:08:32 +0000 | 
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-06-02 17:08:32 +0000 | 
| commit | 15e85e0293b63e6fa166b83c43a1070ca3eec0b6 (patch) | |
| tree | 05dcfbd0fe0fcd334d7e3c14da364a5192ee295b /lib | |
| parent | bd6e0d9485109a5479b34dbdf9f8a6b4597163ec (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 580fd7ae6ba8..36b0c4f88f83 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 parser.tab.h +CLEANFILES+= lex.c parser.c y.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 ef626c328293..7aa03512ef7b 100644 --- a/lib/libforms/lex.l +++ b/lib/libforms/lex.l @@ -36,7 +36,7 @@  #include <string.h>  #include <unistd.h> -#include "parser.tab.h" +#include "y.tab.h"  extern int lineno;  extern int charno;  extern int off; | 
