aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-16 16:29:11 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:04:33 -0700
commit1a5c1064ecea281f42400bdaf809b8841474af37 (patch)
tree5fe192881a4a35c19131d42024a3e146ab24d3e3 /Makefile
parent54d8de05ad9bb147b3634658017affa3ebbe4fb7 (diff)
downloadsparse-dev-1a5c1064ecea281f42400bdaf809b8841474af37.tar.gz
Move flow analysis out of "linearize.c" and into new "flow.c"
Small files are good. Now "linearize" really just contains the code that does a straightforward linearization of the tree, and flow.c contains the stuff that tries to analyse the result.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b50ea239..2057c4fb 100644
--- a/Makefile
+++ b/Makefile
@@ -9,11 +9,11 @@ PREFIX=$(HOME)
PROGRAMS=test-lexing test-parsing obfuscate check compile test-linearize
LIB_H= token.h parse.h lib.h symbol.h scope.h expression.h target.h \
- linearize.h bitmap.h ident-list.h compat.h
+ linearize.h bitmap.h ident-list.h compat.h flow.h
LIB_OBJS= target.o parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \
expression.o show-parse.o evaluate.o expand.o inline.o linearize.o \
- sort.o compat-$(OS).o
+ sort.o flow.o compat-$(OS).o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)
@@ -71,6 +71,7 @@ show-parse.o: $(LIB_H)
symbol.o: $(LIB_H)
expand.o: $(LIB_H)
linearize.o: $(LIB_H)
+flow.o: $(LIB_H)
sort.o: $(LIB_H)
inline.o: $(LIB_H)
target.o: $(LIB_H)