X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/52b88d2428a808d0636a1cb8205a1f891fc23e6a..c3c40090c7a6d155d797e3bdddd2cac704de7a11:/lib/Makefile.am diff --git a/lib/Makefile.am b/lib/Makefile.am index 7f225bd..000ec0b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -22,6 +22,12 @@ noinst_LIBRARIES=libdisorder.a include_HEADERS=disorder.h noinst_PROGRAMS=test +if SERVER +TRACKDB=trackdb.c +else +TRACKDB=trackdb-stub.c +endif + libdisorder_a_SOURCES=charset.c charset.h \ addr.c addr.h \ alsabg.c alsabg.h \ @@ -68,7 +74,7 @@ libdisorder_a_SOURCES=charset.c charset.h \ types.h \ table.c table.h \ timeval.h \ - trackdb.h trackdb.c trackdb-int.h \ + $(TRACKDB) trackdb.h trackdb-int.h \ trackname.c trackname.h \ url.h url.c \ user.h user.c \ @@ -113,7 +119,7 @@ test_SOURCES=test.c memgc.c test.h t-addr.c t-basen.c t-cache.c \ t-casefold.c t-cookies.c t-filepart.c t-hash.c t-heap.c \ t-hex.c t-kvp.c t-mime.c t-printf.c t-regsub.c t-selection.c \ t-signame.c t-sink.c t-split.c t-unicode.c t-url.c t-utf8.c \ - t-words.c t-wstat.c t-bits.c + t-words.c t-wstat.c t-bits.c t-vector.c t-syscalls.c test_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC) test_DEPENDENCIES=libdisorder.a @@ -134,3 +140,5 @@ rebuild-unicode: mv $@.new $@ CLEANFILES=definitions.h definitions.h.new + +EXTRA_DIST=trackdb.c trackdb-stub.c