diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-13 16:21:34 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:15 -0700 |
| commit | 4968e7c01bd9e46fa7cfda5c915b829fec88a691 (patch) | |
| tree | 69d0533178f794bb3f0092c890569bc0e084e12d /Makefile | |
| parent | 90247bd7671b301cd30f43b40cc47e71392a1c04 (diff) | |
| download | sparse-dev-4968e7c01bd9e46fa7cfda5c915b829fec88a691.tar.gz | |
Parse more C expressions.
Namespace handling (and types) still not even started.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,8 @@ CFLAGS=-g -Wall -all: test-lexing test-parsing +PROGRAMS=test-lexing test-parsing + +all: $(PROGRAMS) test-lexing: test-lexing.o tokenize.o lib.o gcc -o $@ test-lexing.o tokenize.o lib.o @@ -8,10 +10,10 @@ test-lexing: 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: token.h +test-parsing.o: token.h parse.h test-lexing.o: token.h tokenize.o: token.h -parse.o: token.h +parse.o: token.h parse.h clean: - rm -f *.o + rm -f *.[oasi] $(PROGRAMS) |
