- Still two flags missing for complete scanner/parser support.

BUILT_SOURCES was necessary to have the dependencies right.
This commit is contained in:
ccremers 2004-05-21 19:31:42 +00:00
parent 6c69baeeb9
commit abd8ad3998
3 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
CC = @CC@
VERSION = @VERSION@
AM_CFLAGS = @CFLAGS@
YFLAGS = -d
BUILT_SOURCES = parser.h
bin_PROGRAMS = scyther
scyther_SOURCES = main.c \

View File

@ -36,7 +36,7 @@
#include "symbols.h"
#include "pheading.h"
#include "symbols.h"
#include "y.tab.h"
#include "parser.h"
#include "tac.h"
#include "compiler.h"
#include "latex.h"

View File

@ -9,7 +9,7 @@
#include "tac.h"
/* tokens for language */
#include "y.tab.h"
#include "parser.h"
void mkname(char *name);
void mkval(void);