]> git.meshlink.io Git - catta/blob - avahi-daemon/Makefile.am
491e5cefd6a5bba1309fd26c36c51806521e00e6
[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 # GLIB 2.0
36 AM_CFLAGS+=$(GLIB20_CFLAGS)
37 AM_LDADD+=$(GLIB20_LIBS)
38
39 # libdaemon
40 AM_CFLAGS+=$(LIBDAEMON_CFLAGS)
41 AM_LDADD+=$(LIBDAEMON_LIBS)
42
43 if ENABLE_DBUS
44 # DBUS
45 AM_CFLAGS+=$(DBUS_CFLAGS)
46 AM_LDADD+=$(DBUS_LIBS)
47 endif
48
49 # This cool debug trap works on i386/gcc only
50 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
51
52 sbin_PROGRAMS = \
53         avahi-daemon
54
55 avahi_daemon_SOURCES = \
56         main.c main.h \
57         simple-protocol.c simple-protocol.h \
58         static-services.c static-services.h
59
60 pkgsysconf_DATA = \
61         avahi-daemon.conf
62
63 service_DATA = \
64         ssh.service
65
66 pkgdata_DATA = \
67         avahi-service.dtd
68
69 EXTRA_DIST = \
70         avahi-service.dtd \
71         avahi-daemon.conf \
72         example.service \
73         dbus-test.py \
74         avahi-dbus.conf \
75         Server.introspect \
76         EntryGroup.introspect \
77         DomainBrowser.introspect \
78         ServiceTypeBrowser.introspect \
79         ServiceBrowser.introspect \
80         ssh.service \
81         example.service \
82         introspect.dtd \
83         introspect.xsl
84
85 if ENABLE_DBUS
86 avahi_daemon_SOURCES += dbus-protocol.c dbus-protocol.h
87
88 dbusservice_DATA = avahi-dbus.conf
89
90 introspection_DATA = \
91         Server.introspect \
92         EntryGroup.introspect \
93         DomainBrowser.introspect \
94         ServiceTypeBrowser.introspect \
95         ServiceBrowser.introspect
96
97 endif
98
99 avahi_daemon_CFLAGS = $(AM_CFLAGS)
100 avahi_daemon_LDADD = $(AM_LDADD) ../avahi-core/libavahi-core.la ../avahi-common/libavahi-common.la
101
102 xmllint:
103         xmllint --noout --valid example.service
104         xmllint --noout --valid Server.introspect
105         xmllint --noout --valid EntryGroup.introspect
106         xmllint --noout --valid DomainBrowser.introspect
107         xmllint --noout --valid ServiceTypeBrowser.introspect
108         xmllint --noout --valid ServiceBrowser.introspect