diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-09-23 18:49:25 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:03:20 -0700 |
| commit | e7ff626d8bf6ef6f81c88d2160a4e10e30cfa36f (patch) | |
| tree | ccc2115e059fb5e3a195761a3a58eed31bbb4f5e /Makefile | |
| parent | fc22d9ef8c955c2dcb112a4279d8c8c76e5238ef (diff) | |
| download | sparse-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-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
