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
20AM_CFLAGS=-I$(top_srcdir) -DG_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1
21
22# This cool debug trap works on i386/gcc only
23AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
24
25desktopdir = $(datadir)/applications
26desktop_DATA = 
27desktop_DATA_in = $(desktop_DATA_in_in:.in.in=.in)
28desktop_DATA_in_in = bssh.desktop.in.in bvnc.desktop.in.in
29
30EXTRA_DIST = $(desktop_DATA_in_in)
31
32if HAVE_GTK
33AM_CFLAGS += -DGNOMELOCALEDIR=\"$(datadir)/locale\"
34if HAVE_DBUS
35if HAVE_GLIB
36
37avahiincludedir=$(includedir)/avahi-ui
38
39avahiinclude_HEADERS = \
40	avahi-ui.h
41
42lib_LTLIBRARIES = \
43	libavahi-ui.la 
44
45libavahi_ui_la_SOURCES = \
46	avahi-ui.h avahi-ui.c
47libavahi_ui_la_CFLAGS = $(AM_CFLAGS) $(GTK20_CFLAGS)
48libavahi_ui_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la ../avahi-client/libavahi-client.la ../avahi-glib/libavahi-glib.la $(GTK20_LIBS)
49libavahi_ui_la_LDFLAGS = $(AM_LDFLAGS)  -version-info $(LIBAVAHI_UI_VERSION_INFO)
50
51if HAVE_GDBM
52libavahi_ui_la_SOURCES += ../avahi-utils/stdb.h ../avahi-utils/stdb.c
53libavahi_ui_la_CFLAGS += -DDATABASE_FILE=\"$(pkglibdir)/service-types.db\"
54libavahi_ui_la_LIBADD += -lgdbm
55endif
56
57if HAVE_DBM
58libavahi_ui_la_SOURCES += ../avahi-utils/stdb.h ../avahi-utils/stdb.c
59libavahi_ui_la_CFLAGS += -DDATABASE_FILE=\"$(pkglibdir)/service-types.db\"
60endif
61
62bin_PROGRAMS = bssh
63desktop_DATA += bssh.desktop bvnc.desktop
64
65bssh_SOURCES = bssh.c
66bssh_CFLAGS = $(AM_CFLAGS) $(GTK20_CFLAGS)
67bssh_LDADD = $(AM_LDADD) $(GTK20_LIBS) ../avahi-client/libavahi-client.la ../avahi-common/libavahi-common.la libavahi-ui.la
68
69install-exec-local:
70	cd $(DESTDIR)/$(bindir) && \
71		rm -f bvnc bshell && \
72		$(LN_S) bssh bvnc && \
73		$(LN_S) bssh bshell
74
75bssh.desktop.in: bssh.desktop.in.in
76	sed -e 's,@bindir\@,$(bindir),g' $< > $@
77
78bvnc.desktop.in: bvnc.desktop.in.in
79	sed -e 's,@bindir\@,$(bindir),g' $< > $@
80
81endif # HAVE_GLIB
82endif
83endif
84
85
86CLEANFILES = $(desktop_DATA) $(desktop_DATA_in)
87