aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-03-21 13:05:06 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:34 -0700
commit64813fc70ff51f446c45baf3061b76952294dbe3 (patch)
tree7a1d5408d57b4156104e22127493f3a16a999524 /Makefile
parenta037a64f9f31465265086543cf1cb079ca6d1b7d (diff)
downloadsparse-dev-64813fc70ff51f446c45baf3061b76952294dbe3.tar.gz
Split up the expression parsing in "parse.c" into a file of
its own - expression.c.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9a0315db..9e4899f9 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@ CC=gcc
CFLAGS=-g -Wall
PROGRAMS=test-lexing test-parsing
-HEADERS=token.h parse.h lib.h symbol.h scope.h
-COMMON=parse.o tokenize.o pre-process.o symbol.o lib.o scope.o
+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
all: $(PROGRAMS)