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