aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/Makefile2
-rw-r--r--bootstrap/ast.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/bootstrap/Makefile b/bootstrap/Makefile
index e4076d9..0f4718c 100644
--- a/bootstrap/Makefile
+++ b/bootstrap/Makefile
@@ -120,7 +120,7 @@ COMPILER_SOURCES = \
all: $(builddir)/stage2
$(OBJECTS): $(srcdir)/compiler.h
out.o outcommon.o outdecl.o outexpr.o outstmt.o: $(srcdir)/out.h
-ast.o funccall.o main.o out.o parsedecl.o parseexpr.o parsestmt.o \
+funccall.o main.o out.o parsedecl.o parseexpr.o parsestmt.o \
token.o typechk.o: $(srcdir)/token.h
$(RTL_OBJECTS): $(RTL_C_HEADERS)
diff --git a/bootstrap/ast.c b/bootstrap/ast.c
index 88bbc7d..b53430f 100644
--- a/bootstrap/ast.c
+++ b/bootstrap/ast.c
@@ -8,7 +8,6 @@
#include <assert.h>
#include <string.h>
#include "compiler.h"
-#include "token.h"
struct Module *module, *modules;