1 # Makefile for the UCW Library (c) 1997--2006 Martin Mares <mj@ucw.cz>
5 ifdef CONFIG_UCW_DBTOOL
6 PROGS+=$(o)/lib/db-tool
10 alloc alloc_str realloc mempool mempool-str mempool-fmt \
11 mmap pagecache partmap hashfunc \
12 lists slists sorter bitsig \
13 log log-file proctitle \
16 fastbuf ff-printf ff-utf8 \
17 fb-file carefulio fb-mem fb-temp fb-mmap fb-limfd fb-buffer fb-grow \
18 str_ctype str_upper str_lower unicode-utf8 stkstring \
19 wildmatch wordsplit ctmatch patimatch patmatch regex \
20 prime primetable random timer randomkey \
24 mainloop exitstatus runcmd sighandler \
25 lizard lizard-safe adler32 \
33 lib.h config.h math.h \
34 mempool.h pagecache.h \
35 sorter.h arraysort.h \
37 unaligned.h prefetch.h \
38 bbuf.h gbuf.h bitarray.h bitsig.h \
39 hashfunc.h hashtable.h \
40 heap.h binheap.h binheap-node.h \
44 fastbuf.h lfs.h ff-utf8.h \
45 chartype.h unicode.h stkstring.h \
46 wildmatch.h patmatch.h \
55 ifdef CONFIG_OWN_REGEX
56 include $(s)/lib/regex/Makefile
59 LIBUCW=$(o)/lib/libucw.$(LS)
60 LIBUCW_MOD_PATHS=$(addprefix $(o)/lib/,$(LIBUCW_MODS))
62 $(o)/lib/libucw.a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
63 $(o)/lib/libucw.so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
65 $(o)/lib/hashfunc.o $(o)/lib/hashfunc.oo: CFLAGS += -funroll-loops
66 $(o)/lib/lizard.o: CFLAGS += $(COPT2) -funroll-loops
68 $(o)/lib/db-test: $(o)/lib/db-test.o $(LIBUCW)
69 $(o)/lib/db-tool: $(o)/lib/db-tool.o $(LIBUCW)
70 $(o)/lib/conf-test: $(o)/lib/conf-test.o $(LIBUCW)
71 $(o)/lib/conf2-test: $(o)/lib/conf2-test.o $(LIBUCW)
72 $(o)/lib/sort-test: $(o)/lib/sort-test.o $(LIBUCW)
73 $(o)/lib/lfs-test: $(o)/lib/lfs-test.o $(LIBUCW)
74 $(o)/lib/hash-test: $(o)/lib/hash-test.o $(LIBUCW)
75 $(o)/lib/str-test: $(o)/lib/str-test.o $(LIBUCW)
76 $(o)/lib/asort-test: $(o)/lib/asort-test.o $(LIBUCW)
77 $(o)/lib/redblack-test: $(o)/lib/redblack-test.o $(LIBUCW)
78 $(o)/lib/binheap-test: $(o)/lib/binheap-test.o $(LIBUCW)
79 $(o)/lib/lizard-test: $(o)/lib/lizard-test.o $(LIBUCW)
80 $(o)/lib/kmp-test: $(o)/lib/kmp-test.o $(LIBUCW) $(LIBCHARSET)
82 TESTS+=$(addprefix $(o)/lib/,regex.test unicode-utf8.test hash-test.test mempool.test stkstring.test slists.test kmp-test.test)
83 $(o)/lib/regex.test: $(o)/lib/regex-t
84 $(o)/lib/unicode-utf8.test: $(o)/lib/unicode-utf8-t
85 $(o)/lib/hash-test.test: $(o)/lib/hash-test
86 $(o)/lib/mempool.test: $(o)/lib/mempool-fmt-t $(o)/lib/mempool-str-t
87 $(o)/lib/stkstring.test: $(o)/lib/stkstring-t
88 $(o)/lib/bitops.test: $(o)/lib/bit-ffs-t $(o)/lib/bit-fls-t
89 $(o)/lib/slists.test: $(o)/lib/slists-t
90 $(o)/lib/kmp-test.test: $(o)/lib/kmp-test
92 INCLUDES+=$(o)/lib/.include-stamp
93 $(o)/lib/.include-stamp: $(addprefix $(s)/lib/,$(LIBUCW_INCLUDES))
94 $(s)/build/install-includes $(s)/lib run/include/lib $(?F)
95 touch $(o)/lib/.include-stamp
98 include $(s)/lib/perl/Makefile
101 ifdef CONFIG_UCW_SHELL_UTILS
102 include $(s)/lib/shell/Makefile