X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/58d97da46ee86dd94fe5533ac4e6509b9c2545bc..98b46a80b7abd5f6b5b7498cc237cbb4ba98b6b3:/lib/Makefile.am diff --git a/lib/Makefile.am b/lib/Makefile.am index 2331261..91a2bf1 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2004, 2005, 2006, 2007 Richard Kettlewell +# Copyright (C) 2004-2008 Richard Kettlewell # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,11 +22,19 @@ 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 \ authhash.c authhash.h \ basen.c basen.h \ base64.c base64.h \ + bits.c bits.h \ cache.c cache.h \ client.c client.h \ client-common.c client-common.h \ @@ -66,8 +74,8 @@ libdisorder_a_SOURCES=charset.c charset.h \ types.h \ table.c table.h \ timeval.h \ - trackdb.h trackdb.c trackdb-int.h \ - trackname.c trackname.h \ + $(TRACKDB) trackdb.h trackdb-int.h \ + trackname.c trackorder.c trackname.h \ url.h url.c \ user.h user.c \ unicode.h unicode.c \ @@ -111,7 +119,8 @@ 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-words.c t-wstat.c t-bits.c t-vector.c t-syscalls.c \ + t-trackname.c test_LDADD=libdisorder.a $(LIBPCRE) $(LIBICONV) $(LIBGC) test_DEPENDENCIES=libdisorder.a @@ -132,3 +141,5 @@ rebuild-unicode: mv $@.new $@ CLEANFILES=definitions.h definitions.h.new + +EXTRA_DIST=trackdb.c trackdb-stub.c