3 # This file is part of avahi.
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.
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.
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
20 AM_CFLAGS=-I$(top_srcdir)
22 # This cool debug trap works on i386/gcc only
23 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
28 pkgsysconfdir=$(sysconfdir)/avahi
29 servicedir=$(pkgsysconfdir)/services
30 introspectiondir=$(pkgdatadir)/introspection
31 dbusservicedir=$(DBUS_SYS_DIR)
34 -DAVAHI_DAEMON_RUNTIME_DIR=\"$(avahi_runtime_dir)/avahi-daemon/\" \
35 -DAVAHI_SOCKET=\"$(avahi_socket)\" \
36 -DAVAHI_SERVICE_DIR=\"$(servicedir)\" \
37 -DAVAHI_CONFIG_FILE=\"$(pkgsysconfdir)/avahi-daemon.conf\" \
38 -DAVAHI_DBUS_INTROSPECTION_DIR=\"$(introspectiondir)\"
48 avahi_daemon_SOURCES = \
50 simple-protocol.c simple-protocol.h \
51 static-services.c static-services.h \
52 ini-file-parser.c ini-file-parser.h
54 avahi_daemon_CFLAGS = $(AM_CFLAGS) $(LIBDAEMON_CFLAGS)
55 avahi_daemon_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la $(LIBDAEMON_LIBS) -lexpat
57 ini_file_parser_test_SOURCES = \
58 ini-file-parser.c ini-file-parser.h \
59 ini-file-parser-test.c
61 ini_file_parser_test_CFLAGS = $(AM_CFLAGS)
62 ini_file_parser_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la
76 avahi_daemon_SOURCES += \
80 avahi_daemon_LDADD += \
81 ../avahi-common/libdbus-common.la \
84 avahi_daemon_CFLAGS += $(DBUS_CFLAGS)
86 dbusservice_DATA = avahi-dbus.conf
88 introspection_DATA = \
90 EntryGroup.introspect \
91 DomainBrowser.introspect \
92 ServiceTypeBrowser.introspect \
93 ServiceBrowser.introspect \
94 ServiceResolver.introspect \
95 AddressResolver.introspect \
96 HostNameResolver.introspect
109 EntryGroup.introspect \
110 DomainBrowser.introspect \
111 ServiceTypeBrowser.introspect \
112 ServiceBrowser.introspect \
113 ServiceResolver.introspect \
114 AddressResolver.introspect \
115 HostNameResolver.introspect \
122 xmllint --noout --valid example.service
123 for F in $(introspection_DATA) ; do \
124 xmllint --noout --valid $$F ; \