diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-13 18:10:50 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:15 -0700 |
| commit | a9400ca17ec93398a39a69079f10f429d37de18b (patch) | |
| tree | 2c721188234b441b53f7f15b8ad01168d1c14249 /Makefile | |
| parent | 24104678556e6d8cc7ff3f775dfdd42c21c9f995 (diff) | |
| download | sparse-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-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |
