]> mj.ucw.cz Git - libucw.git/blob - ucw/Makefile
Opt: State of opt-conf moved to opt_context
[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-varint 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 varint stkstring \
21         wildmatch regex \
22         prime primetable random \
23         time-stamp time-timer time-conf \
24         bit-ffs bit-fls bit-array \
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         opt opt-help opt-conf
40
41 LIBUCW_MAIN_INCLUDES= \
42         lib.h log.h threads.h time.h \
43         mempool.h eltpool.h \
44         clists.h slists.h simple-lists.h \
45         string.h stkstring.h unicode.h varint.h chartype.h regex.h \
46         wildmatch.h \
47         unaligned.h \
48         bbuf.h gbuf.h gary.h bitarray.h bitsig.h \
49         hashfunc.h hashtable.h \
50         heap.h binheap.h binheap-node.h \
51         redblack.h \
52         prime.h \
53         bitops.h \
54         conf.h getopt.h ipaccess.h \
55         fastbuf.h io.h ff-unicode.h ff-varint.h ff-binary.h fb-socket.h \
56         url.h \
57         mainloop.h \
58         process.h \
59         lizard.h \
60         md5.h sha1.h crc.h \
61         base64.h base224.h \
62         kmp.h kmp-search.h binsearch.h \
63         partmap.h \
64         strtonum.h \
65         resource.h trans.h \
66         daemon.h \
67         signames.h \
68         sighandler.h \
69         opt.h
70
71 ifdef CONFIG_UCW_THREADS
72 # Some modules require threading
73 LIBUCW_MODS+=threads-conf workqueue asio
74 LIBUCW_MAIN_INCLUDES+=workqueue.h semaphore.h asio.h
75 endif
76
77 ifdef CONFIG_UCW_FB_DIRECT
78 LIBUCW_MODS+=fb-direct
79 endif
80
81 ifdef CONFIG_UCW_OWN_GETOPT
82 include $(s)/ucw/getopt/Makefile
83 endif
84
85 LIBUCW_INCLUDES=$(LIBUCW_MAIN_INCLUDES)
86
87 include $(s)/ucw/sorter/Makefile
88 include $(s)/ucw/doc/Makefile
89
90 LIBUCW_MOD_PATHS=$(addprefix $(o)/ucw/,$(LIBUCW_MODS))
91
92 export LIBUCW_LIBS=
93 ifdef CONFIG_UCW_THREADS
94 LIBUCW_LIBS+=-lpthread
95 endif
96 ifdef CONFIG_UCW_PCRE
97 LIBUCW_LIBS+=-lpcre
98 endif
99 ifdef CONFIG_UCW_MONOTONIC_CLOCK
100 LIBUCW_LIBS+=-lrt
101 endif
102
103 $(o)/ucw/libucw$(LV).a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
104 $(o)/ucw/libucw$(LV)-pic.a: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
105 $(o)/ucw/libucw$(LV).so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
106 $(o)/ucw/libucw$(LV).so: SONAME_SUFFIX=.0
107 $(o)/ucw/libucw$(LV).so: LIBS+=$(LIBUCW_LIBS)
108
109 ifdef CONFIG_STATIC_PIC
110 $(o)/ucw/libucw.pc: $(o)/ucw/libucw$(LV)-pic.a
111 endif
112 ifdef CONFIG_INSTALL_API
113 $(o)/ucw/libucw.pc: $(addprefix $(o)/ucw/libucw$(LV),.a .so)
114 endif
115
116 $(o)/ucw/hashfunc.o $(o)/ucw/hashfunc.oo: CFLAGS += -funroll-loops
117 $(o)/ucw/lizard.o: CFLAGS += $(COPT2) -funroll-loops
118
119 $(o)/ucw/ff-varint-t: $(LIBUCW)
120 $(o)/ucw/varint-t: $(LIBUCW)
121 $(o)/ucw/conf-test: $(o)/ucw/conf-test.o $(LIBUCW)
122 $(o)/ucw/hash-test: $(o)/ucw/hash-test.o $(LIBUCW)
123 $(o)/ucw/hashfunc-test: $(o)/ucw/hashfunc-test.o $(LIBUCW)
124 $(o)/ucw/asort-test: $(o)/ucw/asort-test.o $(LIBUCW)
125 $(o)/ucw/redblack-test: $(o)/ucw/redblack-test.o $(LIBUCW)
126 $(o)/ucw/binheap-test: $(o)/ucw/binheap-test.o $(LIBUCW)
127 $(o)/ucw/lizard-test: $(o)/ucw/lizard-test.o $(LIBUCW)
128 $(o)/ucw/kmp-test: $(o)/ucw/kmp-test.o $(LIBUCW)
129 $(o)/ucw/strtonum-test: $(o)/ucw/strtonum-test.o $(LIBUCW)
130 ifdef CONFIG_CHARSET
131 $(o)/ucw/kmp-test: $(LIBCHARSET)
132 endif
133 $(o)/ucw/ipaccess-test: $(o)/ucw/ipaccess-test.o $(LIBUCW)
134 $(o)/ucw/trie-test: $(o)/ucw/trie-test.o $(LIBUCW)
135 $(o)/ucw/opt-test: $(o)/ucw/opt-test.o $(LIBUCW)
136
137 TESTS+=$(addprefix $(o)/ucw/,regex.test unicode.test hash-test.test mempool.test stkstring.test \
138     slists.test bbuf.test kmp-test.test getopt.test ff-unicode.test eltpool.test \
139     fb-socket.test trie-test.test string.test sha1.test asort-test.test binheap-test.test \
140     redblack-test.test fb-file.test fb-grow.test fb-pool.test fb-atomic.test \
141     fb-limfd.test fb-temp.test fb-mem.test fb-buffer.test fb-mmap.test fb-multi.test url.test strtonum-test.test \
142     gary.test time.test crc.test signames.test md5.test bitops.test opt.test)
143
144 $(o)/ucw/varint.test: $(o)/ucw/varint-t
145 $(o)/ucw/regex.test: $(o)/ucw/regex-t
146 $(o)/ucw/unicode.test: $(o)/ucw/unicode-t
147 $(o)/ucw/hash-test.test: $(o)/ucw/hash-test
148 $(o)/ucw/mempool.test: $(o)/ucw/mempool-t $(o)/ucw/mempool-fmt-t $(o)/ucw/mempool-str-t
149 $(o)/ucw/stkstring.test: $(o)/ucw/stkstring-t
150 $(o)/ucw/bitops.test: $(o)/ucw/bit-ffs-t $(o)/ucw/bit-fls-t
151 $(o)/ucw/slists.test: $(o)/ucw/slists-t
152 $(o)/ucw/kmp-test.test: $(o)/ucw/kmp-test
153 $(o)/ucw/bbuf.test: $(o)/ucw/bbuf-t
154 $(o)/ucw/getopt.test: $(o)/ucw/getopt-t
155 $(o)/ucw/ff-unicode.test: $(o)/ucw/ff-unicode-t
156 $(o)/ucw/ff-varint.test: $(o)/ucw/ff-varint-t
157 $(o)/ucw/eltpool.test: $(o)/ucw/eltpool-t
158 $(o)/ucw/string.test: $(o)/ucw/str-hex-t $(o)/ucw/str-esc-t $(o)/ucw/str-fix-t
159 $(o)/ucw/sha1.test: $(o)/ucw/sha1-t $(o)/ucw/sha1-hmac-t
160 $(o)/ucw/trie-test.test: $(o)/ucw/trie-test
161 $(o)/ucw/asort-test.test: $(o)/ucw/asort-test
162 $(o)/ucw/binheap-test.test: $(o)/ucw/binheap-test
163 $(o)/ucw/redblack-test.test: $(o)/ucw/redblack-test
164 $(o)/ucw/strtonum-test.test: $(o)/ucw/strtonum-test
165 $(addprefix $(o)/ucw/fb-,file.test grow.test pool.test socket.test atomic.test \
166         limfd.test temp.test mem.test buffer.test mmap.test multi.test): %.test: %-t
167 $(o)/ucw/url.test: $(o)/ucw/url-t
168 $(o)/ucw/gary.test: $(o)/ucw/gary-t
169 $(o)/ucw/time.test: $(o)/ucw/time-conf-t
170 $(o)/ucw/crc.test: $(o)/ucw/crc-t
171 $(o)/ucw/signames.test: $(o)/ucw/signames-t
172 $(o)/ucw/md5.test: $(o)/ucw/md5-t
173 $(o)/ucw/opt.test: $(o)/ucw/opt-test
174
175 ifdef CONFIG_UCW_THREADS
176 TESTS+=$(addprefix $(o)/ucw/,asio.test)
177 $(o)/ucw/asio.test: $(o)/ucw/asio-t
178 endif
179
180 # The version of autoconf.h that is a part of the public API needs to have
181 # the internal symbols filtered out, so we generate ucw/autoconf.h in the
182 # configure script and let the public config.h refer to <ucw/autoconf.h>
183 # instead of plain "autoconf.h".
184
185 API_LIBS+=libucw
186 API_INCLUDES+=$(o)/ucw/.include-stamp
187 $(o)/ucw/.include-stamp: $(addprefix $(s)/ucw/,$(LIBUCW_INCLUDES)) $(o)/ucw/autoconf.h
188         $(Q)$(BUILDSYS)/install-includes $(<D) run/include/ucw $(LIBUCW_INCLUDES)
189         $(Q)$(BUILDSYS)/install-includes $(o)/ucw run/include/ucw autoconf.h
190         $(Q)sed -e 's/^#include "autoconf\.h"/#include <ucw\/autoconf.h>/' <$(s)/ucw/config.h >run/include/ucw/config.h
191         $(Q)touch $@
192 run/lib/pkgconfig/libucw.pc: $(o)/ucw/libucw.pc
193
194 ifdef CONFIG_UCW_PERL
195 include $(s)/ucw/perl/Makefile
196 endif
197
198 ifdef CONFIG_UCW_SHELL_UTILS
199 include $(s)/ucw/shell/Makefile
200 endif
201
202 CONFIGS+=libucw
203
204 INSTALL_TARGETS+=install-libucw-lib
205 install-libucw-lib:
206         install -d -m 755 $(DESTDIR)$(INSTALL_LIB_DIR)
207         install -m 644 run/lib/libucw$(LV).so.0 $(DESTDIR)$(INSTALL_LIB_DIR)/libucw$(LV).so.0.0
208         ln -sf libucw$(LV).so.0.0 $(DESTDIR)$(INSTALL_LIB_DIR)/libucw$(LV).so.0
209 .PHONY: install-libucw-lib
210
211 INSTALL_TARGETS+=install-libucw-api
212 install-libucw-api: install-ucw-sorter-api
213         install -d -m 755 $(DESTDIR)$(INSTALL_LIB_DIR) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/ $(DESTDIR)$(INSTALL_PKGCONFIG_DIR)
214         install -m 644 $(addprefix run/include/ucw/,$(LIBUCW_MAIN_INCLUDES) autoconf.h config.h) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/
215         install -m 644 run/lib/pkgconfig/libucw.pc $(DESTDIR)$(INSTALL_PKGCONFIG_DIR)
216         ln -sf libucw$(LV).so.0.0 $(DESTDIR)$(INSTALL_LIB_DIR)/libucw$(LV).so
217         install -m 644 run/lib/libucw$(LV).a $(DESTDIR)$(INSTALL_LIB_DIR)
218 .PHONY: install-libucw-api
219
220 INSTALL_TARGETS+=install-libucw-config
221 install-libucw-config:
222         install -d -m 755 $(DESTDIR)$(INSTALL_CONFIG_DIR)
223         install -m 644 run/$(CONFIG_DIR)/libucw $(DESTDIR)$(INSTALL_CONFIG_DIR)
224 .PHONY: install-libucw-config