]> git.meshlink.io Git - catta/blob - avahi-daemon/Makefile.am
* Add pkg-config files for avahi-glib/avahi-client
[catta] / avahi-daemon / Makefile.am
1 # $Id$
2 #
3 # This file is part of avahi.
4
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 pkgsysconfdir=$(sysconfdir)/avahi
21 servicedir=$(pkgsysconfdir)/services
22 introspectiondir=$(pkgdatadir)/introspection
23 dbusservicedir=$(DBUS_SYS_DIR)
24
25 AM_CFLAGS= \
26         -I$(top_srcdir) \
27         -DAVAHI_DAEMON_RUNTIME_DIR=\"$(avahi_runtime_dir)/avahi-daemon/\" \
28         -DAVAHI_SOCKET=\"$(avahi_socket)\" \
29         -DAVAHI_SERVICE_DIR=\"$(servicedir)\" \
30         -DAVAHI_CONFIG_FILE=\"$(pkgsysconfdir)/avahi-daemon.conf\" \
31         -DAVAHI_DBUS_INTROSPECTION_DIR=\"$(introspectiondir)\" 
32
33 AM_LDADD=-lexpat
34
35 # libdaemon
36 AM_CFLAGS+=$(LIBDAEMON_CFLAGS)
37 AM_LDADD+=$(LIBDAEMON_LIBS)
38
39 if ENABLE_DBUS
40 AM_CFLAGS+=$(DBUS_CFLAGS)
41 AM_LDADD+=$(DBUS_LIBS)
42 endif
43
44 # This cool debug trap works on i386/gcc only
45 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
46
47 sbin_PROGRAMS = \
48         avahi-daemon
49
50 noinst_PROGRAMS = \
51         ini-file-parser-test
52
53 avahi_daemon_SOURCES = \
54         main.c main.h \
55         simple-protocol.c simple-protocol.h \
56         static-services.c static-services.h \
57         ini-file-parser.c ini-file-parser.h
58
59 avahi_daemon_CFLAGS = $(AM_CFLAGS)
60 avahi_daemon_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la 
61
62 ini_file_parser_test_SOURCES = \
63         ini-file-parser.c ini-file-parser.h \
64         ini-file-parser-test.c
65
66 ini_file_parser_test_CFLAGS = $(AM_CFLAGS)
67 ini_file_parser_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la 
68
69 pkgsysconf_DATA = \
70         avahi-daemon.conf
71
72 service_DATA = \
73         ssh.service
74
75 pkgdata_DATA = \
76         avahi-service.dtd
77
78 EXTRA_DIST = \
79         avahi-service.dtd \
80         avahi-daemon.conf \
81         example.service \
82         dbus-test.py \
83         avahi-dbus.conf \
84         Server.introspect \
85         EntryGroup.introspect \
86         DomainBrowser.introspect \
87         ServiceTypeBrowser.introspect \
88         ServiceBrowser.introspect \
89         ssh.service \
90         example.service \
91         introspect.dtd \
92         introspect.xsl
93
94 if ENABLE_DBUS
95
96 avahi_daemon_SOURCES += \
97         dbus-protocol.c \
98         dbus-protocol.h
99
100 avahi_daemon_LDADD += \
101         ../avahi-common/libdbus-watch-glue.la
102
103 dbusservice_DATA = avahi-dbus.conf
104
105 introspection_DATA = \
106         Server.introspect \
107         EntryGroup.introspect \
108         DomainBrowser.introspect \
109         ServiceTypeBrowser.introspect \
110         ServiceBrowser.introspect
111
112 endif
113
114
115
116 xmllint:
117         xmllint --noout --valid example.service
118         xmllint --noout --valid Server.introspect
119         xmllint --noout --valid EntryGroup.introspect
120         xmllint --noout --valid DomainBrowser.introspect
121         xmllint --noout --valid ServiceTypeBrowser.introspect
122         xmllint --noout --valid ServiceBrowser.introspect