- Still two flags missing for complete scanner/parser support.
BUILT_SOURCES was necessary to have the dependencies right.
This commit is contained in:
parent
6c69baeeb9
commit
abd8ad3998
@ -1,6 +1,8 @@
|
|||||||
CC = @CC@
|
CC = @CC@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
AM_CFLAGS = @CFLAGS@
|
AM_CFLAGS = @CFLAGS@
|
||||||
|
YFLAGS = -d
|
||||||
|
BUILT_SOURCES = parser.h
|
||||||
|
|
||||||
bin_PROGRAMS = scyther
|
bin_PROGRAMS = scyther
|
||||||
scyther_SOURCES = main.c \
|
scyther_SOURCES = main.c \
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
#include "symbols.h"
|
#include "symbols.h"
|
||||||
#include "pheading.h"
|
#include "pheading.h"
|
||||||
#include "symbols.h"
|
#include "symbols.h"
|
||||||
#include "y.tab.h"
|
#include "parser.h"
|
||||||
#include "tac.h"
|
#include "tac.h"
|
||||||
#include "compiler.h"
|
#include "compiler.h"
|
||||||
#include "latex.h"
|
#include "latex.h"
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include "tac.h"
|
#include "tac.h"
|
||||||
|
|
||||||
/* tokens for language */
|
/* tokens for language */
|
||||||
#include "y.tab.h"
|
#include "parser.h"
|
||||||
|
|
||||||
void mkname(char *name);
|
void mkname(char *name);
|
||||||
void mkval(void);
|
void mkval(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user