]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/Makefile
Mainloop: Fixed +1 error in heap usage.
[libucw.git] / ucw / Makefile
index aa795e76202c9101c6c0d48b738648a9a5bcb598..7d7b82fedcd5c1aa5693d609604f8bc63638d4cd 100644 (file)
@@ -13,10 +13,10 @@ LIBUCW_MODS= \
        partmap hashfunc \
        slists simple-lists bitsig \
        log log-stream log-file log-syslog log-conf tbf \
-       conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section \
+       conf-context conf-alloc conf-dump conf-input conf-intr conf-journal conf-parse conf-section conf-getopt \
        ipaccess \
        fastbuf ff-binary ff-string ff-printf ff-unicode ff-stkstring \
-       fb-file fb-mem fb-temp tempfile fb-mmap fb-limfd fb-buffer fb-grow fb-pool fb-atomic fb-param fb-socket \
+       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 \
        char-cat char-upper char-lower unicode stkstring \
        wildmatch regex \
        prime primetable random \
@@ -33,7 +33,9 @@ LIBUCW_MODS= \
        bbuf gary \
        getopt \
        strtonum \
-       resource trans res-fd res-mem res-subpool res-mempool res-eltpool
+       resource trans res-fd res-mem res-subpool res-mempool res-eltpool \
+       daemon daemon-ctrl \
+       signames
 
 LIBUCW_MAIN_INCLUDES= \
        lib.h log.h threads.h time.h \
@@ -59,7 +61,9 @@ LIBUCW_MAIN_INCLUDES= \
        kmp.h kmp-search.h binsearch.h \
        partmap.h \
        strtonum.h \
-       resource.h trans.h
+       resource.h trans.h \
+       daemon.h \
+       signames.h
 
 ifdef CONFIG_UCW_THREADS
 # Some modules require threading
@@ -112,7 +116,7 @@ TESTS+=$(addprefix $(o)/ucw/,regex.test unicode.test hash-test.test mempool.test
     slists.test bbuf.test kmp-test.test getopt.test ff-unicode.test eltpool.test \
     fb-socket.test trie-test.test string.test sha1.test asort-test.test binheap-test.test \
     redblack-test.test fb-file.test fb-grow.test fb-pool.test fb-atomic.test \
-    fb-limfd.test fb-temp.test fb-mem.test fb-buffer.test fb-mmap.test url.test strtonum-test.test \
+    fb-limfd.test fb-temp.test fb-mem.test fb-buffer.test fb-mmap.test fb-multi.test url.test strtonum-test.test \
     gary.test time.test crc.test)
 
 $(o)/ucw/regex.test: $(o)/ucw/regex-t
@@ -135,11 +139,12 @@ $(o)/ucw/binheap-test.test: $(o)/ucw/binheap-test
 $(o)/ucw/redblack-test.test: $(o)/ucw/redblack-test
 $(o)/ucw/strtonum-test.test: $(o)/ucw/strtonum-test
 $(addprefix $(o)/ucw/fb-,file.test grow.test pool.test socket.test atomic.test \
-       limfd.test temp.test mem.test buffer.test mmap.test): %.test: %-t
+       limfd.test temp.test mem.test buffer.test mmap.test multi.test): %.test: %-t
 $(o)/ucw/url.test: $(o)/ucw/url-t
 $(o)/ucw/gary.test: $(o)/ucw/gary-t
 $(o)/ucw/time.test: $(o)/ucw/time-conf-t
 $(o)/ucw/crc.test: $(o)/ucw/crc-t
+$(o)/ucw/signames.test: $(o)/ucw/signames-t
 
 ifdef CONFIG_UCW_THREADS
 TESTS+=$(addprefix $(o)/ucw/,asio.test)