Archived
1
0
Fork 0

list.c: basic list implementation

This commit is contained in:
Henrik Hautakoski 2011-01-04 21:04:02 +01:00
parent 3b68160892
commit 3c2436867e
5 changed files with 307 additions and 0 deletions

View file

@ -19,6 +19,7 @@ ifdef NO_MEMRCHR
obj-compat = src/compat/memrchr.o
endif
obj-xalloc = src/xalloc.o src/die.o
obj-list = src/list.o $(obj-xalloc)
obj-str-list = src/str-list.o $(obj-xalloc)
obj-strbuf = src/strbuf.o $(obj-xalloc) src/die.o
obj-path = src/path.o $(obj-strbuf)