aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-11-29 12:08:47 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:05:15 -0700
commit1bd5d04ea9c6193da756c1dcd4393ed1f72cd49d (patch)
tree01549df4e601f398fabec48466a2982ae5f82d3e /Makefile
parent12e60e8379aff9674549f0ad1e263a946c5ccc36 (diff)
downloadsparse-dev-1bd5d04ea9c6193da756c1dcd4393ed1f72cd49d.tar.gz
Rename "register.c" into "liveness.c". That's what it does.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b3168898..29b49811 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LIB_H= token.h parse.h lib.h symbol.h scope.h expression.h target.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 flow.o cse.o simplify.o memops.o register.o compat-$(OS).o
+ sort.o flow.o cse.o simplify.o memops.o liveness.o compat-$(OS).o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)
@@ -78,7 +78,7 @@ flow.o: $(LIB_H)
cse.o: $(LIB_H)
simplify.o: $(LIB_H)
memops.o: $(LIB_H)
-register.o: $(LIB_H)
+liveness.o: $(LIB_H)
sort.o: $(LIB_H)
inline.o: $(LIB_H)
target.o: $(LIB_H)