]> mj.ucw.cz Git - libucw.git/blob - ucw/Makefile
Libucw: Prime numbers moved from lib.h to prime.h.
[libucw.git] / ucw / Makefile
1 # Makefile for the UCW Library (c) 1997--2008 Martin Mares <mj@ucw.cz>
2
3 DIRS+=ucw
4 LIBUCW=$(o)/ucw/libucw.pc
5
6 PROGS+=$(o)/ucw/basecode
7
8 LIBUCW_MODS= \
9         threads \
10         alloc alloc_str realloc bigalloc mempool mempool-str mempool-fmt eltpool \
11         mmap partmap hashfunc \
12         slists simple-lists bitsig \
13         log log-file proctitle \
14         conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section \
15         ipaccess \
16         profile \
17         fastbuf ff-binary ff-string ff-printf ff-unicode \
18         fb-file carefulio fb-mem fb-temp tempfile fb-mmap fb-limfd fb-buffer fb-grow fb-pool fb-atomic fb-param fb-socket \
19         char-cat char-upper char-lower unicode stkstring \
20         wildmatch regex \
21         prime primetable random timer randomkey \
22         bit-ffs bit-fls \
23         url \
24         mainloop exitstatus runcmd sighandler \
25         lizard lizard-safe adler32 \
26         md5 sha1 sha1-hmac \
27         base64 base224 \
28         sync \
29         qache \
30         string str-esc str-split str-match str-imatch str-hex \
31         bbuf \
32         getopt
33
34 LIBUCW_INCLUDES= \
35         lib.h config.h threads.h \
36         mempool.h \
37         arraysort.h \
38         clists.h slists.h simple-lists.h \
39         string.h stkstring.h unicode.h chartype.h regex.h \
40         wildmatch.h \
41         unaligned.h prefetch.h \
42         bbuf.h gbuf.h bitarray.h bitsig.h \
43         hashfunc.h hashtable.h \
44         heap.h binheap.h binheap-node.h \
45         redblack.h \
46         binsearch.h prime.h \
47         bitops.h \
48         conf.h getopt.h ipaccess.h \
49         profile.h \
50         fastbuf.h lfs.h ff-unicode.h ff-binary.h \
51         url.h \
52         mainloop.h \
53         lizard.h \
54         md5.h \
55         base64.h base224.h \
56         qache.h \
57         kmp.h kmp-search.h binsearch.h \
58         partmap.h
59
60 ifdef CONFIG_UCW_THREADS
61 # Some modules require threading
62 LIBUCW_MODS+=threads-conf workqueue asio fb-direct
63 LIBUCW_INCLUDES+=workqueue.h semaphore.h asio.h
64 endif
65
66 ifdef CONFIG_OWN_GETOPT
67 include $(s)/ucw/getopt/Makefile
68 endif
69
70 include $(s)/ucw/sorter/Makefile
71
72 LIBUCW_MOD_PATHS=$(addprefix $(o)/ucw/,$(LIBUCW_MODS))
73
74 $(o)/ucw/libucw.a: $(addsuffix .o,$(LIBUCW_MOD_PATHS))
75 $(o)/ucw/libucw.so: $(addsuffix .oo,$(LIBUCW_MOD_PATHS))
76
77 $(o)/ucw/hashfunc.o $(o)/ucw/hashfunc.oo: CFLAGS += -funroll-loops
78 $(o)/ucw/lizard.o: CFLAGS += $(COPT2) -funroll-loops
79
80 $(o)/ucw/conf-test: $(o)/ucw/conf-test.o $(LIBUCW)
81 $(o)/ucw/lfs-test: $(o)/ucw/lfs-test.o $(LIBUCW)
82 $(o)/ucw/hash-test: $(o)/ucw/hash-test.o $(LIBUCW)
83 $(o)/ucw/hashfunc-test: $(o)/ucw/hashfunc-test.o $(LIBUCW)
84 $(o)/ucw/asort-test: $(o)/ucw/asort-test.o $(LIBUCW)
85 $(o)/ucw/redblack-test: $(o)/ucw/redblack-test.o $(LIBUCW)
86 $(o)/ucw/binheap-test: $(o)/ucw/binheap-test.o $(LIBUCW)
87 $(o)/ucw/lizard-test: $(o)/ucw/lizard-test.o $(LIBUCW)
88 $(o)/ucw/kmp-test: $(o)/ucw/kmp-test.o $(LIBUCW) $(LIBCHARSET)
89 $(o)/ucw/ipaccess-test: $(o)/ucw/ipaccess-test.o $(LIBUCW)
90 $(o)/ucw/trie-test: $(o)/ucw/trie-test.o $(LIBUCW)
91 $(o)/ucw/basecode: $(o)/ucw/basecode.o $(LIBUCW)
92
93 TESTS+=$(addprefix $(o)/ucw/,regex.test unicode.test hash-test.test mempool.test stkstring.test \
94     slists.test kmp-test.test bbuf.test getopt.test fastbuf.test ff-unicode.test eltpool.test \
95     fb-socket.test trie-test.test string.test sha1.test asort-test.test binheap-test.test \
96     redblack-test.test basecode.test)
97
98 $(o)/ucw/regex.test: $(o)/ucw/regex-t
99 $(o)/ucw/unicode.test: $(o)/ucw/unicode-t
100 $(o)/ucw/hash-test.test: $(o)/ucw/hash-test
101 $(o)/ucw/mempool.test: $(o)/ucw/mempool-t $(o)/ucw/mempool-fmt-t $(o)/ucw/mempool-str-t
102 $(o)/ucw/stkstring.test: $(o)/ucw/stkstring-t
103 $(o)/ucw/bitops.test: $(o)/ucw/bit-ffs-t $(o)/ucw/bit-fls-t
104 $(o)/ucw/slists.test: $(o)/ucw/slists-t
105 $(o)/ucw/kmp-test.test: $(o)/ucw/kmp-test
106 $(o)/ucw/bbuf.test: $(o)/ucw/bbuf-t
107 $(o)/ucw/getopt.test: $(o)/ucw/getopt-t
108 $(o)/ucw/fastbuf.test: $(o)/ucw/fb-file-t $(o)/ucw/fb-grow-t $(o)/ucw/fb-pool-t
109 $(o)/ucw/ff-unicode.test: $(o)/ucw/ff-unicode-t
110 $(o)/ucw/eltpool.test: $(o)/ucw/eltpool-t
111 $(o)/ucw/fb-socket.test: $(o)/ucw/fb-socket-t
112 $(o)/ucw/string.test: $(o)/ucw/str-hex-t $(o)/ucw/str-esc-t
113 $(o)/ucw/sha1.test: $(o)/ucw/sha1-t $(o)/ucw/sha1-hmac-t
114 $(o)/ucw/trie-test.test: $(o)/ucw/trie-test
115 $(o)/ucw/asort-test.test: $(o)/ucw/asort-test
116 $(o)/ucw/binheap-test.test: $(o)/ucw/binheap-test
117 $(o)/ucw/redblack-test.test: $(o)/ucw/redblack-test
118 $(o)/ucw/basecode.test: $(o)/ucw/basecode
119
120 ifdef CONFIG_UCW_THREADS
121 TESTS+=$(addprefix $(o)/ucw/,asio.test)
122 $(o)/ucw/asio.test: $(o)/ucw/asio-t
123 endif
124
125 API_LIBS+=libucw
126 API_INCLUDES+=$(o)/ucw/.include-stamp
127 $(o)/ucw/.include-stamp: $(addprefix $(s)/ucw/,$(LIBUCW_INCLUDES)) obj/autoconf.h
128         $(Q)$(s)/build/install-includes $(<D) run/include/ucw $(LIBUCW_INCLUDES)
129         $(Q)$(s)/build/install-includes obj run/include/ucw autoconf.h
130         $(Q)touch $@
131 run/lib/pkgconfig/libucw.pc: $(o)/ucw/libucw.pc
132
133 ifdef CONFIG_UCW_PERL
134 include $(s)/ucw/perl/Makefile
135 endif
136
137 ifdef CONFIG_UCW_SHELL_UTILS
138 include $(s)/ucw/shell/Makefile
139 endif