]> git.meshlink.io Git - catta/blob - avahi-utils/Makefile.am
makefile fix
[catta] / avahi-utils / 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 AM_CFLAGS=-I$(top_srcdir)
21
22 # This cool debug trap works on i386/gcc only
23 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
24
25 EXTRA_DIST = \
26         avahi-publish-address.in \
27         avahi-publish-service.in \
28         avahi-bookmarks.in \
29         avahi-discover.in \
30         avahi-discover.desktop.in
31
32 SUBDIRS=avahi
33
34 if HAVE_PYTHON
35 if HAVE_PYTHON_DBUS
36 if HAVE_PYGTK
37
38 pythonscripts = \
39         avahi-publish-address \
40         avahi-publish-service \
41         avahi-bookmarks \
42         avahi-discover
43
44 desktopdir = $(datadir)/applications
45 desktop_DATA = avahi-discover.desktop
46
47 avahi-discover.desktop: avahi-discover.desktop.in
48         sed -e 's,@bindir\@,$(bindir),g' $< > $@
49         chmod +x $@
50
51 avahi-discover: avahi-discover.in
52         sed -e 's,@PYTHON\@,$(PYTHON),g' \
53                 -e 's,@interfacesdir\@,$(interfacesdir),g' $< > $@
54         chmod +x $@
55
56 avahi-publish-address: avahi-publish-address.in
57         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
58         chmod +x $@
59
60 avahi-publish-service: avahi-publish-service.in
61         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
62         chmod +x $@
63
64 avahi-bookmarks: avahi-bookmarks.in
65         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
66         chmod +x $@
67
68 bin_SCRIPTS = $(pythonscripts)
69 CLEANFILES = $(pythonscripts) $(desktop_DATA)
70
71 endif
72 endif
73 endif
74
75 if HAVE_DBUS
76
77 bin_PROGRAMS = avahi-browse avahi-resolve-host-name
78
79 avahi_browse_SOURCES = avahi-browse.c sigint.c sigint.h
80 avahi_browse_CFLAGS = $(AM_CFLAGS)
81 avahi_browse_LDADD = $(AM_LDADD) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la
82
83 if HAVE_GDBM
84 avahi_browse_SOURCES += stdb.h stdb.c
85 avahi_browse_CFLAGS += -DDATABASE_FILE=\"$(pkgdatadir)/service-types.db\"
86 avahi_browse_LDADD += -lgdbm
87 endif
88
89 avahi_resolve_host_name_SOURCES = avahi-resolve-host-name.c sigint.c sigint.h
90 avahi_resolve_host_name_CFLAGS = $(AM_CFLAGS)
91 avahi_resolve_host_name_LDADD = $(AM_LDADD) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la
92
93 endif