aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-03-21 13:16:20 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:34 -0700
commit513117bdcb4cc8f227b8eb2c03869a3c1d32ae6a (patch)
treefc5fd1312ea8647d3c0153ad74e9e7377757b22e /Makefile
parent64813fc70ff51f446c45baf3061b76952294dbe3 (diff)
downloadsparse-dev-513117bdcb4cc8f227b8eb2c03869a3c1d32ae6a.tar.gz
Split up the printout functions into a file of their own.
Parse trees, symbols and expressions are now printed out in show-parse.c instead of cluttering up the main parsing files.
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)