]> git.meshlink.io Git - catta/blob - avahi-utils/Makefile.am
replace avahi-resolve-{address,host-name} with versions written in C
[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-resolve-host-name \
43         avahi-resolve-address \
44         avahi-discover
45
46 desktopdir = $(datadir)/applications
47 desktop_DATA = avahi-discover.desktop
48
49 avahi-discover.desktop: avahi-discover.desktop.in
50         sed -e 's,@bindir\@,$(bindir),g' $< > $@
51         chmod +x $@
52
53 avahi-discover: avahi-discover.in
54         sed -e 's,@PYTHON\@,$(PYTHON),g' \
55                 -e 's,@interfacesdir\@,$(interfacesdir),g' $< > $@
56         chmod +x $@
57
58 avahi-publish-address: avahi-publish-address.in
59         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
60         chmod +x $@
61
62 avahi-publish-service: avahi-publish-service.in
63         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
64         chmod +x $@
65
66 avahi-bookmarks: avahi-bookmarks.in
67         sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
68         chmod +x $@
69
70 bin_SCRIPTS = $(pythonscripts)
71 CLEANFILES = $(pythonscripts) $(desktop_DATA)
72
73 endif
74 endif
75 endif
76
77 if HAVE_DBUS
78
79 bin_PROGRAMS = avahi-browse avahi-resolve-host-name
80
81 avahi_browse_SOURCES = avahi-browse.c sigint.c sigint.h
82 avahi_browse_CFLAGS = $(AM_CFLAGS)
83 avahi_browse_LDADD = $(AM_LDADD) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la
84
85 if HAVE_GDBM
86 avahi_browse_SOURCES += stdb.h stdb.c
87 avahi_browse_CFLAGS += -DDATABASE_FILE=\"$(pkgdatadir)/service-types.db\"
88 avahi_browse_LDADD += -lgdbm
89 endif
90
91 avahi_resolve_host_name_SOURCES = avahi-resolve-host-name.c sigint.c sigint.h
92 avahi_resolve_host_name_CFLAGS = $(AM_CFLAGS)
93 avahi_resolve_host_name_LDADD = $(AM_LDADD) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la
94
95 endif