summaryrefslogtreecommitdiffstats
path: root/sdpd
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-11-17 19:15:11 +0000
committerMarcel Holtmann <marcel@holtmann.org>2006-11-17 19:15:11 +0000
commit0960d076f77e67d99592e76d83ecd36ea7182618 (patch)
tree43dbe25190759b550ebebd88eb08eada8c3f6592 /sdpd
parent24f75e0b15d73034bf75058f86d545fcb58314f0 (diff)
Create library for SDP server functionality
Diffstat (limited to 'sdpd')
-rw-r--r--sdpd/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/sdpd/Makefile.am b/sdpd/Makefile.am
index 226d1f5c..a520ac46 100644
--- a/sdpd/Makefile.am
+++ b/sdpd/Makefile.am
@@ -1,9 +1,13 @@
+noinst_LIBRARIES = libsdpserver.a
+
+libsdpserver_a_SOURCES = sdpd.h cstate.c request.c service.c servicedb.c
+
sbin_PROGRAMS = sdpd
-sdpd_SOURCES = main.c request.c service.c cstate.c servicedb.c sdpd.h
+sdpd_SOURCES = main.c
-sdpd_LDADD = @BLUEZ_LIBS@ $(top_builddir)/common/libhelper.a
+sdpd_LDADD = @BLUEZ_LIBS@ $(top_builddir)/common/libhelper.a libsdpserver.a
AM_CFLAGS = @BLUEZ_CFLAGS@