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)
21
22lib_LTLIBRARIES = 
23BUILT_SOURCES = 
24
25if HAVE_QT3
26
27avahiqt3includedir=$(includedir)/avahi-qt3
28
29avahiqt3include_HEADERS = \
30	qt-watch.h 
31
32lib_LTLIBRARIES += \
33	libavahi-qt3.la
34
35BUILT_SOURCES += qt-watch.moc3
36
37libavahi_qt3_la_SOURCES = \
38	qt-watch.cpp 
39
40qt-watch.moc3: qt-watch.cpp
41	$(MOC_QT3) $^ > $@
42
43libavahi_qt3_la_CPPFLAGS = $(AM_CFLAGS) $(QT3_CFLAGS) $(VISIBILITY_HIDDEN_CFLAGS)
44libavahi_qt3_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la $(QT3_LIBS)
45libavahi_qt3_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_QT3_VERSION_INFO)
46endif
47
48if HAVE_QT4
49
50avahiqt4includedir=$(includedir)/avahi-qt4
51avahiqt4include_HEADERS = \
52	qt-watch.h 
53
54lib_LTLIBRARIES += \
55	libavahi-qt4.la
56
57BUILT_SOURCES += qt-watch.moc4
58
59libavahi_qt4_la_SOURCES = \
60	qt-watch.cpp 
61
62qt-watch.moc4: qt-watch.cpp
63	$(MOC_QT4) $^ > $@
64
65libavahi_qt4_la_CPPFLAGS = $(AM_CFLAGS) $(QT4_CFLAGS) -DQT4 $(VISIBILITY_HIDDEN_CFLAGS)
66libavahi_qt4_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la $(QT4_LIBS)
67libavahi_qt4_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBAVAHI_QT4_VERSION_INFO)
68endif
69
70CLEANFILES = $(BUILT_SOURCES)
71