]> mj.ucw.cz Git - libucw.git/blob - ucw/Makefile
Mainloop: Fixed +1 error in heap usage.
[libucw.git] / ucw / Makefile
1 # Makefile for the UCW Library (c) 1997--2010 Martin Mares <mj@ucw.cz>
2
3 DIRS+=ucw
4 LIBUCW=$(o)/ucw/libucw.pc
5
6 ifdef CONFIG_UCW_UTILS
7 include $(s)/ucw/utils/Makefile
8 endif
9
10 LIBUCW_MODS= \
11         threads \
12         alloc alloc_str realloc bigalloc mempool mempool-str mempool-fmt eltpool \
13         partmap hashfunc \
14         slists simple-lists bitsig \
15         log log-stream log-file log-syslog log-conf tbf \
16         conf-context conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section conf-getopt \
17         ipaccess \
18         fastbuf ff-binary ff-string ff-printf ff-unicode ff-stkstring \
19         fb-file fb-mem fb-temp tempfile fb-mmap fb-limfd fb-buffer fb-grow fb-pool fb-atomic fb-param fb-socket fb-multi \
20         char-cat char-upper char-lower unicode stkstring \
21         wildmatch regex \
22         prime primetable random \
23         time-stamp time-timer time-conf \
24         bit-ffs bit-fls \
25         url \
26         mainloop main-block main-rec \
27         proctitle exitstatus runcmd \
28         lizard lizard-safe adler32 sighandler \
29         md5 sha1 sha1-hmac crc crc-tables \
30         base64 base224 \
31         io-careful io-sync io-mmap io-size \
32         string str-esc str-split str-match str-imatch str-hex str-fix \
33         bbuf gary \
34         getopt \
35         strtonum \
36         resource trans res-fd res-mem res-subpool res-mempool res-eltpool \
37         daemon daemon-ctrl \
38         signames
39
40 LIBUCW_MAIN_INCLUDES= \
41         lib.h log.h threads.h time.h \
42         mempool.h \
43         clists.h slists.h simple-lists.h \
44         string.h stkstring.h unicode.h chartype.h regex.h \
45         wildmatch.h \
46         unaligned.h \
47         bbuf.h gbuf.h gary.h bitarray.h bitsig.h \
48         hashfunc.h hashtable.h \
49         heap.h binheap.h binheap-node.h \
50         redblack.h \
51         prime.h \
52         bitops.h \
53         conf.h getopt.h ipaccess.h \
54         fastbuf.h io.h ff-unicode.h ff-binary.h \
55         url.h \
56         mainloop.h \
57         process.h \
58         lizard.h \
59         md5.h sha1.h crc.h \
60         base64.h base224.h \
61         kmp.h kmp-search.h binsearch.h \
62         partmap.h \
63         strtonum.h \
64         resource.h trans.h \
65         daemon.h \
66         signames.h
67
68 ifdef CONFIG_UCW_THREADS
69 # Some modules require threading
70 LIBUCW_MODS+=threads-conf workqueue asio
71 LIBUCW_MAIN_INCLUDES+=workqueue.h semaphore.h asio.h
72 endif
73
74 ifdef CONFIG_UCW_FB_DIRECT
75 LIBUCW_MODS+=fb-direct
76 endif
77
78 ifdef CONFIG_UCW_OWN_GETOPT
79 include $(s)/ucw/getopt/Makefile
80 endif
81
82 LIBUCW_INCLUDES=$(LIBUCW_MAIN_INCLUDES)
83
84 include $(s)/ucw/sorter/Makefile
85 include $(s)/ucw/doc/Makefile
86
87 LIBUCW_MOD_PATHS=$(addprefix $(o)/ucw/,$(LIBUCW_MODS))
88
89 $(o)/ucw/libucw.a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
90 $(o)/ucw/libucw-pic.a: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
91 $(o)/ucw/libucw.so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
92
93 ifdef CONFIG_STATIC_PIC
94 $(o)/ucw/libucw.pc: $(o)/ucw/libucw-pic.a
95 endif
96
97 $(o)/ucw/hashfunc.o $(o)/ucw/hashfunc.oo: CFLAGS += -funroll-loops
98 $(o)/ucw/lizard.o: CFLAGS += $(COPT2) -funroll-loops
99
100 $(o)/ucw/conf-test: $(o)/ucw/conf-test.o $(LIBUCW)
101 $(o)/ucw/hash-test: $(o)/ucw/hash-test.o $(LIBUCW)
102 $(o)/ucw/hashfunc-test: $(o)/ucw/hashfunc-test.o $(LIBUCW)
103 $(o)/ucw/asort-test: $(o)/ucw/asort-test.o $(LIBUCW)
104 $(o)/ucw/redblack-test: $(o)/ucw/redblack-test.o $(LIBUCW)
105 $(o)/ucw/binheap-test: $(o)/ucw/binheap-test.o $(LIBUCW)
106 $(o)/ucw/lizard-test: $(o)/ucw/lizard-test.o $(LIBUCW)
107 $(o)/ucw/kmp-test: $(o)/ucw/kmp-test.o $(LIBUCW)
108 $(o)/ucw/strtonum-test: $(o)/ucw/strtonum-test.o $(LIBUCW)
109 ifdef CONFIG_CHARSET
110 $(o)/ucw/kmp-test: $(LIBCHARSET)
111 endif
112 $(o)/ucw/ipaccess-test: $(o)/ucw/ipaccess-test.o $(LIBUCW)
113 $(o)/ucw/trie-test: $(o)/ucw/trie-test.o $(LIBUCW)
114
115 TESTS+=$(addprefix $(o)/ucw/,regex.test unicode.test hash-test.test mempool.test stkstring.test \
116     slists.test bbuf.test kmp-test.test getopt.test ff-unicode.test eltpool.test \
117     fb-socket.test trie-test.test string.test sha1.test asort-test.test binheap-test.test \
118     redblack-test.test fb-file.test fb-grow.test fb-pool.test fb-atomic.test \
119     fb-limfd.test fb-temp.test fb-mem.test fb-buffer.test fb-mmap.test fb-multi.test url.test strtonum-test.test \
120     gary.test time.test crc.test)
121
122 $(o)/ucw/regex.test: $(o)/ucw/regex-t
123 $(o)/ucw/unicode.test: $(o)/ucw/unicode-t
124 $(o)/ucw/hash-test.test: $(o)/ucw/hash-test
125 $(o)/ucw/mempool.test: $(o)/ucw/mempool-t $(o)/ucw/mempool-fmt-t $(o)/ucw/mempool-str-t
126 $(o)/ucw/stkstring.test: $(o)/ucw/stkstring-t
127 $(o)/ucw/bitops.test: $(o)/ucw/bit-ffs-t $(o)/ucw/bit-fls-t
128 $(o)/ucw/slists.test: $(o)/ucw/slists-t
129 $(o)/ucw/kmp-test.test: $(o)/ucw/kmp-test
130 $(o)/ucw/bbuf.test: $(o)/ucw/bbuf-t
131 $(o)/ucw/getopt.test: $(o)/ucw/getopt-t
132 $(o)/ucw/ff-unicode.test: $(o)/ucw/ff-unicode-t
133 $(o)/ucw/eltpool.test: $(o)/ucw/eltpool-t
134 $(o)/ucw/string.test: $(o)/ucw/str-hex-t $(o)/ucw/str-esc-t $(o)/ucw/str-fix-t
135 $(o)/ucw/sha1.test: $(o)/ucw/sha1-t $(o)/ucw/sha1-hmac-t
136 $(o)/ucw/trie-test.test: $(o)/ucw/trie-test
137 $(o)/ucw/asort-test.test: $(o)/ucw/asort-test
138 $(o)/ucw/binheap-test.test: $(o)/ucw/binheap-test
139 $(o)/ucw/redblack-test.test: $(o)/ucw/redblack-test
140 $(o)/ucw/strtonum-test.test: $(o)/ucw/strtonum-test
141 $(addprefix $(o)/ucw/fb-,file.test grow.test pool.test socket.test atomic.test \
142         limfd.test temp.test mem.test buffer.test mmap.test multi.test): %.test: %-t
143 $(o)/ucw/url.test: $(o)/ucw/url-t
144 $(o)/ucw/gary.test: $(o)/ucw/gary-t
145 $(o)/ucw/time.test: $(o)/ucw/time-conf-t
146 $(o)/ucw/crc.test: $(o)/ucw/crc-t
147 $(o)/ucw/signames.test: $(o)/ucw/signames-t
148
149 ifdef CONFIG_UCW_THREADS
150 TESTS+=$(addprefix $(o)/ucw/,asio.test)
151 $(o)/ucw/asio.test: $(o)/ucw/asio-t
152 endif
153
154 # The version of autoconf.h that is a part of the public API needs to have
155 # the internal symbols filtered out, so we generate ucw/autoconf.h in the
156 # configure script and let the public config.h refer to <ucw/autoconf.h>
157 # instead of plain "autoconf.h".
158
159 API_LIBS+=libucw
160 API_INCLUDES+=$(o)/ucw/.include-stamp
161 $(o)/ucw/.include-stamp: $(addprefix $(s)/ucw/,$(LIBUCW_INCLUDES)) $(o)/ucw/autoconf.h
162         $(Q)$(BUILDSYS)/install-includes $(<D) run/include/ucw $(LIBUCW_INCLUDES)
163         $(Q)$(BUILDSYS)/install-includes $(o)/ucw run/include/ucw autoconf.h
164         $(Q)sed -e 's/^#include "autoconf\.h"/#include <ucw\/autoconf.h>/' <$(s)/ucw/config.h >run/include/ucw/config.h
165         $(Q)touch $@
166 run/lib/pkgconfig/libucw.pc: $(o)/ucw/libucw.pc
167
168 ifdef CONFIG_UCW_PERL
169 include $(s)/ucw/perl/Makefile
170 endif
171
172 ifdef CONFIG_UCW_SHELL_UTILS
173 include $(s)/ucw/shell/Makefile
174 endif
175
176 CONFIGS+=libucw
177
178 INSTALL_TARGETS+=install-libucw
179 install-libucw:
180         install -d -m 755 $(DESTDIR)$(INSTALL_LIB_DIR) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/ $(DESTDIR)$(INSTALL_PKGCONFIG_DIR) $(DESTDIR)$(INSTALL_CONFIG_DIR)
181         install -m 644 $(addprefix run/include/ucw/,$(LIBUCW_MAIN_INCLUDES) autoconf.h config.h) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/
182         install -m 644 run/lib/pkgconfig/libucw.pc $(DESTDIR)$(INSTALL_PKGCONFIG_DIR)
183         install -m 644 run/lib/libucw.$(LS) $(DESTDIR)$(INSTALL_LIB_DIR)
184 ifdef CONFIG_STATIC_PIC
185         install -m 644 run/lib/libucw-pic.$(LS) $(DESTDIR)$(INSTALL_LIB_DIR)
186 endif
187         install -m 644 run/$(CONFIG_DIR)/libucw $(DESTDIR)$(INSTALL_CONFIG_DIR)
188
189 .PHONY: install-libucw