aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9e4899f9..939ea84b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,11 @@ CC=gcc
CFLAGS=-g -Wall
PROGRAMS=test-lexing test-parsing
+
HEADERS=token.h parse.h lib.h symbol.h scope.h expression.h
-COMMON=parse.o tokenize.o pre-process.o symbol.o lib.o scope.o expression.o
+
+COMMON= parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \
+ expression.o show-parse.o
all: $(PROGRAMS)