]> mj.ucw.cz Git - moe.git/blob - ucw/Makefile
Isolate: Report internal errors from inside the box
[moe.git] / ucw / Makefile
1 # Makefile for the UCW Library (c) 1997--2009 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         mmap partmap hashfunc \
14         slists simple-lists bitsig \
15         log log-stream log-file log-syslog log-conf proctitle tbf \
16         conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section \
17         ipaccess \
18         profile \
19         fastbuf ff-binary ff-string ff-printf ff-unicode ff-stkstring \
20         fb-file carefulio fb-mem fb-temp tempfile fb-mmap fb-limfd fb-buffer fb-grow fb-pool fb-atomic fb-param fb-socket \
21         char-cat char-upper char-lower unicode stkstring \
22         wildmatch regex \
23         prime primetable random timer randomkey \
24         bit-ffs bit-fls \
25         url \
26         mainloop exitstatus runcmd sighandler \
27         lizard lizard-safe adler32 \
28         md5 sha1 sha1-hmac \
29         base64 base224 \
30         sync \
31         qache \
32         string str-esc str-split str-match str-imatch str-hex \
33         bbuf \
34         getopt
35
36 LIBUCW_MAIN_INCLUDES= \
37         lib.h threads.h \
38         mempool.h \
39         clists.h slists.h simple-lists.h \
40         string.h stkstring.h unicode.h chartype.h regex.h \
41         wildmatch.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 \
46         redblack.h \
47         prime.h \
48         bitops.h \
49         conf.h getopt.h ipaccess.h \
50         profile.h \
51         fastbuf.h lfs.h ff-unicode.h ff-binary.h \
52         url.h \
53         mainloop.h \
54         lizard.h \
55         md5.h \
56         base64.h base224.h \
57         qache.h \
58         kmp.h kmp-search.h binsearch.h \
59         partmap.h
60
61 ifdef CONFIG_UCW_THREADS
62 # Some modules require threading
63 LIBUCW_MODS+=threads-conf workqueue asio
64 LIBUCW_MAIN_INCLUDES+=workqueue.h semaphore.h asio.h
65 endif
66
67 ifdef CONFIG_UCW_FB_DIRECT
68 LIBUCW_MODS+=fb-direct
69 endif
70
71 ifdef CONFIG_OWN_GETOPT
72 include $(s)/ucw/getopt/Makefile
73 endif
74
75 LIBUCW_INCLUDES=$(LIBUCW_MAIN_INCLUDES)
76
77 include $(s)/ucw/sorter/Makefile
78 include $(s)/ucw/doc/Makefile
79
80 LIBUCW_MOD_PATHS=$(addprefix $(o)/ucw/,$(LIBUCW_MODS))
81
82 $(o)/ucw/libucw.a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
83 $(o)/ucw/libucw-pic.a: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
84 $(o)/ucw/libucw.so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
85
86 $(o)/ucw/hashfunc.o $(o)/ucw/hashfunc.oo: CFLAGS += -funroll-loops
87 $(o)/ucw/lizard.o: CFLAGS += $(COPT2) -funroll-loops
88
89 $(o)/ucw/conf-test: $(o)/ucw/conf-test.o $(LIBUCW)
90 $(o)/ucw/lfs-test: $(o)/ucw/lfs-test.o $(LIBUCW)
91 $(o)/ucw/hash-test: $(o)/ucw/hash-test.o $(LIBUCW)
92 $(o)/ucw/hashfunc-test: $(o)/ucw/hashfunc-test.o $(LIBUCW)
93 $(o)/ucw/asort-test: $(o)/ucw/asort-test.o $(LIBUCW)
94 $(o)/ucw/redblack-test: $(o)/ucw/redblack-test.o $(LIBUCW)
95 $(o)/ucw/binheap-test: $(o)/ucw/binheap-test.o $(LIBUCW)
96 $(o)/ucw/lizard-test: $(o)/ucw/lizard-test.o $(LIBUCW)
97 $(o)/ucw/kmp-test: $(o)/ucw/kmp-test.o $(LIBUCW)
98 ifdef CONFIG_CHARSET
99 $(o)/ucw/kmp-test: $(LIBCHARSET)
100 endif
101 $(o)/ucw/ipaccess-test: $(o)/ucw/ipaccess-test.o $(LIBUCW)
102 $(o)/ucw/trie-test: $(o)/ucw/trie-test.o $(LIBUCW)
103
104 TESTS+=$(addprefix $(o)/ucw/,regex.test unicode.test hash-test.test mempool.test stkstring.test \
105     slists.test bbuf.test kmp-test.test getopt.test ff-unicode.test eltpool.test \
106     fb-socket.test trie-test.test string.test sha1.test asort-test.test binheap-test.test \
107     redblack-test.test fb-file.test fb-grow.test fb-pool.test fb-atomic.test \
108     fb-limfd.test fb-temp.test fb-mem.test fb-buffer.test fb-mmap.test url.test)
109
110 $(o)/ucw/regex.test: $(o)/ucw/regex-t
111 $(o)/ucw/unicode.test: $(o)/ucw/unicode-t
112 $(o)/ucw/hash-test.test: $(o)/ucw/hash-test
113 $(o)/ucw/mempool.test: $(o)/ucw/mempool-t $(o)/ucw/mempool-fmt-t $(o)/ucw/mempool-str-t
114 $(o)/ucw/stkstring.test: $(o)/ucw/stkstring-t
115 $(o)/ucw/bitops.test: $(o)/ucw/bit-ffs-t $(o)/ucw/bit-fls-t
116 $(o)/ucw/slists.test: $(o)/ucw/slists-t
117 $(o)/ucw/kmp-test.test: $(o)/ucw/kmp-test
118 $(o)/ucw/bbuf.test: $(o)/ucw/bbuf-t
119 $(o)/ucw/getopt.test: $(o)/ucw/getopt-t
120 $(o)/ucw/ff-unicode.test: $(o)/ucw/ff-unicode-t
121 $(o)/ucw/eltpool.test: $(o)/ucw/eltpool-t
122 $(o)/ucw/string.test: $(o)/ucw/str-hex-t $(o)/ucw/str-esc-t
123 $(o)/ucw/sha1.test: $(o)/ucw/sha1-t $(o)/ucw/sha1-hmac-t
124 $(o)/ucw/trie-test.test: $(o)/ucw/trie-test
125 $(o)/ucw/asort-test.test: $(o)/ucw/asort-test
126 $(o)/ucw/binheap-test.test: $(o)/ucw/binheap-test
127 $(o)/ucw/redblack-test.test: $(o)/ucw/redblack-test
128 $(addprefix $(o)/ucw/fb-,file.test grow.test pool.test socket.test atomic.test \
129         limfd.test temp.test mem.test buffer.test mmap.test): %.test: %-t
130 $(o)/ucw/url.test: $(o)/ucw/url-t
131
132 ifdef CONFIG_UCW_THREADS
133 TESTS+=$(addprefix $(o)/ucw/,asio.test)
134 $(o)/ucw/asio.test: $(o)/ucw/asio-t
135 endif
136
137 # The version of autoconf.h that is a part of the public API needs to have
138 # the internal symbols filtered out, so we generate ucw/autoconf.h in the
139 # configure script and let the public config.h refer to <ucw/autoconf.h>
140 # instead of plain "autoconf.h".
141
142 API_LIBS+=libucw
143 API_INCLUDES+=$(o)/ucw/.include-stamp
144 $(o)/ucw/.include-stamp: $(addprefix $(s)/ucw/,$(LIBUCW_INCLUDES)) $(o)/ucw/autoconf.h
145         $(Q)$(BUILDSYS)/install-includes $(<D) run/include/ucw $(LIBUCW_INCLUDES)
146         $(Q)$(BUILDSYS)/install-includes $(o)/ucw run/include/ucw autoconf.h
147         $(Q)sed -e 's/^#include "autoconf\.h"/#include <ucw\/autoconf.h>/' <$(s)/ucw/config.h >run/include/ucw/config.h
148         $(Q)touch $@
149 run/lib/pkgconfig/libucw.pc: $(o)/ucw/libucw.pc
150
151 ifdef CONFIG_UCW_PERL
152 include $(s)/ucw/perl/Makefile
153 endif
154
155 ifdef CONFIG_UCW_SHELL_UTILS
156 include $(s)/ucw/shell/Makefile
157 endif
158
159 CONFIGS+=libucw
160
161 INSTALL_TARGETS+=install-libucw
162 install-libucw:
163         install -d -m 755 $(DESTDIR)$(INSTALL_LIB_DIR) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/ $(DESTDIR)$(INSTALL_PKGCONFIG_DIR) $(DESTDIR)$(INSTALL_CONFIG_DIR)
164         install -m 644 $(addprefix run/include/ucw/,$(LIBUCW_MAIN_INCLUDES) autoconf.h config.h) $(DESTDIR)$(INSTALL_INCLUDE_DIR)/ucw/
165         install -m 644 run/lib/pkgconfig/libucw.pc $(DESTDIR)$(INSTALL_PKGCONFIG_DIR)
166         install -m 644 run/lib/libucw.$(LS) $(DESTDIR)$(INSTALL_LIB_DIR)
167         install -m 644 run/$(CONFIG_DIR)/libucw $(DESTDIR)$(INSTALL_CONFIG_DIR)
168
169 .PHONY: install-libucw