summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1996-05-30 23:03:00 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1996-05-30 23:03:00 +0000
commitff0912e2fd104078682ff78b28f0fe655bf95739 (patch)
treecee2a1f5a1ce7b78657b6b50f2b5b82076b8bdf9
parentdd2ff46a1202a6e21fb37038534332ec768b70ab (diff)
Notes
-rw-r--r--usr.bin/colldef/Makefile4
-rw-r--r--usr.bin/colldef/scan.l4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/colldef/Makefile b/usr.bin/colldef/Makefile
index 06ee59ccc190..56baf0c4c5d9 100644
--- a/usr.bin/colldef/Makefile
+++ b/usr.bin/colldef/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.5 1995/10/22 00:58:41 ache Exp $
+# $Id: Makefile,v 1.6 1995/11/03 14:53:27 ache Exp $
PROG = colldef
LFLAGS = -8 -i
@@ -7,7 +7,7 @@ CFLAGS += -I. -I${.CURDIR}/../../lib/libc/locale
SRCS = parse.c scan.c
LDADD = -ll
DPADD = ${LIBL}
-CLEANFILES += lex.yy.c parse.c scan.c y.tab.[ch]
+CLEANFILES += parse.c scan.c parse.tab.h
SUBDIR = data
.include <bsd.prog.mk>
diff --git a/usr.bin/colldef/scan.l b/usr.bin/colldef/scan.l
index 3be046335080..f39b18bb7b08 100644
--- a/usr.bin/colldef/scan.l
+++ b/usr.bin/colldef/scan.l
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: scan.l,v 1.1 1995/01/22 20:37:31 alex Exp alex $
+ * $Id: scan.l,v 1.1.1.1 1995/02/17 17:29:50 ache Exp $
*/
#include <err.h>
@@ -34,7 +34,7 @@
#include <string.h>
#include <sysexits.h>
#include "collate.h"
-#include "y.tab.h"
+#include "parse.tab.h"
int line_no = 1;
u_char buf[STR_LEN], *ptr;