]> git.meshlink.io Git - catta/blob - avahi-utils/Makefile.am
lookup service types in the service data base in avahi-browse
[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-resolve-host-name.in \
30         avahi-resolve-address.in \
31         avahi-discover.in \
32         avahi-discover.desktop.in
33
34 SUBDIRS=avahi
35
36 if HAVE_PYTHON
37 if HAVE_PYTHON_DBUS
38 if HAVE_PYGTK
39
40 pythonscripts = \
41         avahi-publish-address \
42         avahi-publish-service \
43         avahi-bookmarks \
44         avahi-resolve-host-name \
45         avahi-resolve-address \
46         avahi-discover
47
48 desktopdir = $(datadir)/applications
49 desktop_DATA = avahi-discover.desktop
50
51 avahi-discover.desktop: avahi-discover.desktop.in
52         sed -e 's,@bindir\@,$(bindir),g' $< > $@
53         chmod +x $@
54
55 avahi-discover: avahi-discover.in
56         sed -e 's,@PYTHON\@,$(PYTHON),g' \
57                 -e 's,@interfacesdir\@,$(interfacesdir),g' $< > $@
58         chmod +x $@
59
60 avahi-publish-address: avahi-publish-address.in
61         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
62         chmod +x $@
63
64 avahi-publish-service: avahi-publish-service.in
65         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
66         chmod +x $@
67
68 avahi-bookmarks: avahi-bookmarks.in
69         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
70         chmod +x $@
71
72 avahi-resolve-host-name: avahi-resolve-host-name.in
73         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
74         chmod +x $@
75
76 avahi-resolve-address: avahi-resolve-address.in
77         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
78         chmod +x $@
79
80 bin_SCRIPTS = $(pythonscripts)
81 CLEANFILES = $(pythonscripts) $(desktop_DATA)
82
83 endif
84 endif
85 endif
86
87 if HAVE_DBUS
88
89 bin_PROGRAMS = avahi-browse
90
91 avahi_browse_SOURCES = avahi-browse.c sigint.c sigint.h
92 avahi_browse_CFLAGS = $(AM_CFLAGS)
93 avahi_browse_LDADD = $(AM_LDADD) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la -lgdbm
94
95 if HAVE_GDBM
96 avahi_browse_SOURCES += stdb.h stdb.c
97 avahi_browse_CFLAGS += -DDATABASE_FILE=\"$(pkgdatadir)/service-types.db\"
98 endif
99
100 endif