# $Id: Makefile.am 1585 2007-12-16 20:23:22Z lennart $
#
# This file is part of avahi.
#
# avahi is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# avahi is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with avahi; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
AM_CFLAGS=-I$(top_srcdir)
# This cool debug trap works on i386/gcc only
AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
if HAVE_LIBDAEMON
if HAVE_XML
pkgsysconfdir=$(sysconfdir)/avahi
servicedir=$(pkgsysconfdir)/services
introspectiondir=$(pkgdatadir)/introspection
AM_CFLAGS+= \
-DAVAHI_DAEMON_RUNTIME_DIR=\"$(avahi_runtime_dir)/avahi-daemon/\" \
-DAVAHI_SOCKET=\"$(avahi_socket)\" \
-DAVAHI_SERVICE_DIR=\"$(servicedir)\" \
-DAVAHI_CONFIG_FILE=\"$(pkgsysconfdir)/avahi-daemon.conf\" \
-DAVAHI_HOSTS_FILE=\"$(pkgsysconfdir)/hosts\" \
-DAVAHI_DBUS_INTROSPECTION_DIR=\"$(introspectiondir)\" \
-DAVAHI_CONFIG_DIR=\"$(pkgsysconfdir)\"
sbin_PROGRAMS = \
avahi-daemon
if ENABLE_TESTS
noinst_PROGRAMS = \
ini-file-parser-test
endif
avahi_daemon_SOURCES = \
main.c main.h \
simple-protocol.c simple-protocol.h \
static-services.c static-services.h \
static-hosts.c static-hosts.h \
ini-file-parser.c ini-file-parser.h \
setproctitle.c setproctitle.h \
../avahi-client/check-nss.c \
inotify-nosys.h
avahi_daemon_CFLAGS = $(AM_CFLAGS) $(LIBDAEMON_CFLAGS) $(XML_CFLAGS)
avahi_daemon_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la $(LIBDAEMON_LIBS) $(XML_LIBS)
ini_file_parser_test_SOURCES = \
ini-file-parser.c ini-file-parser.h \
ini-file-parser-test.c
ini_file_parser_test_CFLAGS = $(AM_CFLAGS)
ini_file_parser_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-core/libavahi-core.la
pkgsysconf_DATA = \
avahi-daemon.conf \
hosts
service_DATA = \
ssh.service \
sftp-ssh.service
pkgdata_DATA = \
avahi-service.dtd
if ENABLE_CHROOT
avahi_daemon_SOURCES += \
chroot.c chroot.h \
caps.c caps.h
avahi_daemon_LDADD += -lcap
endif
if HAVE_DLOPEN
avahi_daemon_LDADD += -ldl
endif
if HAVE_DBUS
dbusservicedir=$(DBUS_SYS_DIR)
avahi_daemon_SOURCES += \
dbus-protocol.c dbus-protocol.h \
dbus-util.c dbus-util.h \
dbus-internal.h \
dbus-async-address-resolver.c \
dbus-async-host-name-resolver.c \
dbus-async-service-resolver.c \
dbus-domain-browser.c \
dbus-entry-group.c \
dbus-service-browser.c \
dbus-service-type-browser.c \
dbus-sync-address-resolver.c \
dbus-sync-host-name-resolver.c \
dbus-sync-service-resolver.c \
dbus-record-browser.c \
../avahi-common/dbus.c ../avahi-common/dbus.h \
../avahi-common/dbus-watch-glue.c ../avahi-common/dbus-watch-glue.h
avahi_daemon_LDADD += \
$(DBUS_LIBS)
avahi_daemon_CFLAGS += $(DBUS_CFLAGS) -DDBUS_SYSTEM_BUS_DEFAULT_ADDRESS=\"$(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)\"
dbusservice_DATA = avahi-dbus.conf
introspection_DATA = \
Server.introspect \
EntryGroup.introspect \
DomainBrowser.introspect \
ServiceTypeBrowser.introspect \
ServiceBrowser.introspect \
ServiceResolver.introspect \
AddressResolver.introspect \
HostNameResolver.introspect \
RecordBrowser.introspect
endif
endif
endif
EXTRA_DIST = \
avahi-service.dtd \
avahi-daemon.conf \
example.service \
avahi-dbus.conf \
Server.introspect \
EntryGroup.introspect \
DomainBrowser.introspect \
ServiceTypeBrowser.introspect \
ServiceBrowser.introspect \
ServiceResolver.introspect \
AddressResolver.introspect \
HostNameResolver.introspect \
RecordBrowser.introspect \
ssh.service \
sftp-ssh.service \
hosts \
example.service \
introspect.dtd \
introspect.xsl
xmllint:
xmllint --noout --valid example.service
for F in $(introspection_DATA) ; do \
xmllint --noout --valid $$F ; \
done
install-data-local:
test -z "$(localstatedir)/run" || $(mkdir_p) "$(DESTDIR)$(localstatedir)/run"
syntax highlighted by Code2HTML, v. 0.9.1