1 # Makefile for the Sherlock Library (c) 1997--2003 Martin Mares <mj@ucw.cz>
4 PROGS+=obj/lib/db-tool obj/lib/buckettool
6 LIBSH_MODS=alloc alloc_str ctmatch db fastbuf fb-file fb-mem lists \
7 log log2 md5 md5hex mmap pagecache patimatch patmatch pool \
8 prime random realloc regex timer url wildmatch \
9 wordsplit str_ctype str_upper bucket conf object sorter \
10 finger proctitle ipaccess profile bitsig randomkey \
11 hashfunc base64 base224 fb-temp fb-mmap fb-printf urlkey \
13 LIBSH_MOD_PATHS=$(addprefix obj/lib/,$(LIBSH_MODS)) $(CUSTOM_LIB_MODULES)
15 obj/lib/libsh.a: $(addsuffix .o,$(LIBSH_MOD_PATHS))
16 obj/lib/libsh.so: $(addsuffix .oo,$(LIBSH_MOD_PATHS))
18 obj/lib/hashfunc.o obj/lib/hashfunc.oo: CFLAGS += -funroll-loops
20 obj/lib/db-test: obj/lib/db-test.o $(LIBSH)
21 obj/lib/db-tool: obj/lib/db-tool.o $(LIBSH)
22 obj/lib/buckettool: obj/lib/buckettool.o $(LIBSH)
23 obj/lib/conf-test: obj/lib/conf-test.o $(LIBSH)
24 obj/lib/sort-test: obj/lib/sort-test.o $(LIBSH)
25 obj/lib/lfs-test: obj/lib/lfs-test.o $(LIBSH)
26 obj/lib/regex-test: obj/lib/regex-test.o $(LIBSH)
27 obj/lib/hash-test: obj/lib/hash-test.o $(LIBSH)
28 obj/lib/str-test: obj/lib/str-test.o $(LIBSH)
29 obj/lib/asort-test: obj/lib/asort-test.o $(LIBSH)
30 obj/lib/redblack-test: obj/lib/redblack-test.o $(LIBSH)
31 obj/lib/binheap-test: obj/lib/binheap-test.o $(LIBSH)
33 include lib/perl/Makefile
34 include lib/shell/Makefile