aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@home.transmeta.com>2003-03-13 18:10:50 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:15 -0700
commita9400ca17ec93398a39a69079f10f429d37de18b (patch)
tree2c721188234b441b53f7f15b8ad01168d1c14249 /Makefile
parent24104678556e6d8cc7ff3f775dfdd42c21c9f995 (diff)
downloadsparse-dev-a9400ca17ec93398a39a69079f10f429d37de18b.tar.gz
Start handling minimal semantic information, needed for types.
This adds a layer of symbol information on top of the raw tokens.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e6fee791..81380e32 100644
--- a/Makefile
+++ b/Makefile
@@ -7,13 +7,14 @@ all: $(PROGRAMS)
test-lexing: test-lexing.o tokenize.o lib.o
gcc -o $@ test-lexing.o tokenize.o lib.o
-test-parsing: test-parsing.o parse.o tokenize.o lib.o
- gcc -o $@ test-parsing.o parse.o tokenize.o lib.o
+test-parsing: test-parsing.o parse.o tokenize.o symbol.o lib.o
+ gcc -o $@ test-parsing.o parse.o tokenize.o symbol.o lib.o
test-parsing.o: token.h parse.h
test-lexing.o: token.h
tokenize.o: token.h
parse.o: token.h parse.h
+symbol.o: symbol.h token.h parse.h
clean:
rm -f *.[oasi] $(PROGRAMS)