aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-09-23 18:49:25 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:03:20 -0700
commite7ff626d8bf6ef6f81c88d2160a4e10e30cfa36f (patch)
treeccc2115e059fb5e3a195761a3a58eed31bbb4f5e /Makefile
parentfc22d9ef8c955c2dcb112a4279d8c8c76e5238ef (diff)
downloadsparse-dev-e7ff626d8bf6ef6f81c88d2160a4e10e30cfa36f.tar.gz
Add sort_list() function that kind of works like qsort, but
is just different enough to be confusing. Thank you, thank you, I'll be here all week. Please remember to tip your waitresses.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4f29ec17..16dd8a35 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,8 @@ LIB_H= token.h parse.h lib.h symbol.h scope.h expression.h target.h \
linearize.h bitmap.h ident-list.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
+ expression.o show-parse.o evaluate.o expand.o inline.o linearize.o \
+ sort.o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)
@@ -56,6 +57,7 @@ show-parse.o: $(LIB_H)
symbol.o: $(LIB_H)
expand.o: $(LIB_H)
linearize.o: $(LIB_H)
+sort.o: $(LIB_H)
inline.o: $(LIB_H)
target.o: $(LIB_H)
test-lexing.o: $(LIB_H)