1 # Makefile for the UCW Library (c) 1997--2007 Martin Mares <mj@ucw.cz>
4 LIBUCW=$(o)/lib/libucw.$(LS)
6 ifdef CONFIG_UCW_DBTOOL
7 PROGS+=$(o)/lib/db-tool
12 alloc alloc_str realloc bigalloc mempool mempool-str mempool-fmt \
13 mmap pagecache partmap hashfunc \
14 lists slists simple-lists sorter bitsig \
15 log log-file proctitle \
16 conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section \
19 fastbuf ff-binary ff-string ff-printf ff-utf8 \
20 fb-file carefulio fb-mem fb-temp fb-mmap fb-limfd fb-buffer fb-grow fb-pool fb-atomic fb-param \
21 str_ctype str_upper str_lower unicode-utf8 stkstring \
22 wildmatch wordsplit ctmatch patimatch patmatch regex \
23 prime primetable random timer randomkey \
27 mainloop exitstatus runcmd sighandler \
28 lizard lizard-safe adler32 \
38 lib.h config.h threads.h \
39 mempool.h pagecache.h \
40 sorter.h sorter-globals.h arraysort.h \
41 lists.h clists.h slists.h simple-lists.h \
42 unaligned.h prefetch.h \
43 bbuf.h gbuf.h bitarray.h bitsig.h \
44 hashfunc.h hashtable.h \
45 heap.h binheap.h binheap-node.h \
49 conf.h getopt.h ipaccess.h \
51 fastbuf.h lfs.h ff-utf8.h ff-binary.h \
52 chartype.h unicode.h stkstring.h \
53 wildmatch.h patmatch.h \
64 ifdef CONFIG_UCW_THREADS
65 # Some modules require threading
67 LIBUCW_MODS+=threads-conf workqueue asio fb-direct
68 LIBUCW_INCLUDES+=workqueue.h semaphore.h asio.h
71 ifdef CONFIG_OWN_REGEX
72 include $(s)/lib/regex/Makefile
75 ifdef CONFIG_OWN_GETOPT
76 include $(s)/lib/getopt/Makefile
79 include $(s)/lib/sorter/Makefile
81 LIBUCW=$(o)/lib/libucw.$(LS)
82 LIBUCW_MOD_PATHS=$(addprefix $(o)/lib/,$(LIBUCW_MODS))
84 $(o)/lib/libucw.a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
85 $(o)/lib/libucw.so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
87 $(o)/lib/hashfunc.o $(o)/lib/hashfunc.oo: CFLAGS += -funroll-loops
88 $(o)/lib/lizard.o: CFLAGS += $(COPT2) -funroll-loops
90 $(o)/lib/db-test: $(o)/lib/db-test.o $(LIBUCW)
91 $(o)/lib/db-tool: $(o)/lib/db-tool.o $(LIBUCW)
92 $(o)/lib/conf-test: $(o)/lib/conf-test.o $(LIBUCW)
93 $(o)/lib/sort-test: $(o)/lib/sort-test.o $(LIBUCW)
94 $(o)/lib/lfs-test: $(o)/lib/lfs-test.o $(LIBUCW)
95 $(o)/lib/hash-test: $(o)/lib/hash-test.o $(LIBUCW)
96 $(o)/lib/str-test: $(o)/lib/str-test.o $(LIBUCW)
97 $(o)/lib/asort-test: $(o)/lib/asort-test.o $(LIBUCW)
98 $(o)/lib/redblack-test: $(o)/lib/redblack-test.o $(LIBUCW)
99 $(o)/lib/binheap-test: $(o)/lib/binheap-test.o $(LIBUCW)
100 $(o)/lib/lizard-test: $(o)/lib/lizard-test.o $(LIBUCW)
101 $(o)/lib/kmp-test: $(o)/lib/kmp-test.o $(LIBUCW) $(LIBCHARSET)
102 $(o)/lib/ipaccess-test: $(o)/lib/ipaccess-test.o $(LIBUCW)
104 TESTS+=$(addprefix $(o)/lib/,regex.test unicode-utf8.test hash-test.test mempool.test stkstring.test \
105 slists.test kmp-test.test bbuf.test getopt.test fastbuf.test)
107 $(o)/lib/regex.test: $(o)/lib/regex-t
108 $(o)/lib/unicode-utf8.test: $(o)/lib/unicode-utf8-t
109 $(o)/lib/hash-test.test: $(o)/lib/hash-test
110 $(o)/lib/mempool.test: $(o)/lib/mempool-t $(o)/lib/mempool-fmt-t $(o)/lib/mempool-str-t
111 $(o)/lib/stkstring.test: $(o)/lib/stkstring-t
112 $(o)/lib/bitops.test: $(o)/lib/bit-ffs-t $(o)/lib/bit-fls-t
113 $(o)/lib/slists.test: $(o)/lib/slists-t
114 $(o)/lib/kmp-test.test: $(o)/lib/kmp-test
115 $(o)/lib/bbuf.test: $(o)/lib/bbuf-t
116 $(o)/lib/getopt.test: $(o)/lib/getopt-t
117 $(o)/lib/fastbuf.test: $(o)/lib/fb-file-t $(o)/lib/fb-grow-t $(o)/lib/fb-pool-t
119 ifdef CONFIG_UCW_THREADS
120 TESTS+=$(addprefix $(o)/lib/,asio.test)
121 $(o)/lib/asio.test: $(o)/lib/asio-t
124 INCLUDES+=$(o)/lib/.include-stamp
125 $(o)/lib/.include-stamp: $(addprefix $(s)/lib/,$(LIBUCW_INCLUDES))
126 $(s)/build/install-includes $(s)/lib run/include/lib $(?F)
127 $(s)/build/install-includes $(o)/lib run/include/lib autoconf.h
128 touch $(o)/lib/.include-stamp
130 ifdef CONFIG_UCW_PERL
131 include $(s)/lib/perl/Makefile
134 ifdef CONFIG_UCW_SHELL_UTILS
135 include $(s)/lib/shell/Makefile