use YHEADER, not YFLAGS+=-d. from kre

This commit is contained in:
itojun 2000-10-29 12:32:06 +00:00
parent 23d5ac0264
commit 00f86cf2f4
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2000/06/13 15:15:24 itojun Exp $
# $NetBSD: Makefile,v 1.2 2000/10/29 12:32:06 itojun Exp $
PROG= setkey
SRCS= setkey.c parse.y token.l
@ -8,7 +8,7 @@ CPPFLAGS+=-I${.CURDIR}/../../lib/libipsec
LDADD+= -ll -ly
DPADD+= ${LIBL} ${LIBY}
CLEANFILES+= y.tab.c y.tab.h key_test.o keytest
YFLAGS+=-d
YHEADER= yes
#SCRIPTS= scriptdump

View File

@ -1,4 +1,4 @@
/* $NetBSD: token.l,v 1.3 2000/10/03 21:48:33 itojun Exp $ */
/* $NetBSD: token.l,v 1.4 2000/10/29 12:32:06 itojun Exp $ */
/* $KAME: token.l,v 1.16 2000/08/28 16:41:10 itojun Exp $ */
/*
@ -47,7 +47,7 @@
#include <unistd.h>
#include <errno.h>
#include "vchar.h"
#include "y.tab.h"
#include "parse.h"
#define DECHO \
if (f_debug) {printf("<%d>", yy_start); ECHO ; printf("\n"); }