]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
Don't use -export-dynamic as a linker flag
[catta] / avahi-core / 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 avahiincludedir=$(includedir)/avahi-core
26
27 avahiinclude_HEADERS = \
28         core.h \
29         log.h \
30         rr.h \
31         publish.h \
32         lookup.h
33
34 lib_LTLIBRARIES = \
35         libavahi-core.la 
36
37 if ENABLE_TESTS
38 noinst_PROGRAMS = \
39         prioq-test \
40         avahi-test \
41         conformance-test \
42         avahi-reflector \
43         dns-test \
44         dns-spin-test \
45         timeeventq-test \
46         hashmap-test \
47         querier-test \
48         update-test
49
50 TESTS = \
51         dns-spin-test \
52         dns-test \
53         hashmap-test
54 endif  
55
56 libavahi_core_la_SOURCES = \
57         timeeventq.c timeeventq.h\
58         iface.c iface.h \
59         server.c internal.h entry.c \
60         prioq.c prioq.h \
61         cache.c cache.h \
62         socket.c socket.h \
63         response-sched.c response-sched.h \
64         query-sched.c query-sched.h \
65         probe-sched.c probe-sched.h \
66         announce.c announce.h \
67         browse.c browse.h \
68         rrlist.c rrlist.h \
69         resolve-host-name.c \
70         resolve-address.c \
71         browse-domain.c \
72         browse-service-type.c \
73         browse-service.c \
74         resolve-service.c \
75         dns.c dns.h \
76         rr.c rr.h rr-util.h \
77         core.h lookup.h publish.h \
78         log.c log.h \
79         browse-dns-server.c \
80         fdutil.h fdutil.c \
81         util.c util.h \
82         hashmap.c hashmap.h \
83         wide-area.c wide-area.h \
84         multicast-lookup.c multicast-lookup.h \
85         querier.c querier.h \
86         addr-util.h addr-util.c \
87         domain-util.h domain-util.c \
88         dns-srv-rr.h
89
90 if HAVE_NETLINK
91 libavahi_core_la_SOURCES += \
92        iface-linux.c iface-linux.h \
93        netlink.c netlink.h
94 else
95 if HAVE_PF_ROUTE 
96 libavahi_core_la_SOURCES += \
97         iface-pfroute.c iface-pfroute.h
98 endif
99 endif
100
101 libavahi_core_la_CFLAGS = $(AM_CFLAGS)
102 libavahi_core_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
103 libavahi_core_la_LDFLAGS = $(AM_LDFLAGS)  -version-info $(LIBAVAHI_CORE_VERSION_INFO)
104
105 prioq_test_SOURCES = \
106         prioq-test.c  \
107         prioq.c prioq.h
108 prioq_test_CFLAGS = $(AM_CFLAGS)
109 prioq_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
110
111 avahi_test_SOURCES = \
112         avahi-test.c
113 avahi_test_CFLAGS = $(AM_CFLAGS)
114 avahi_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
115
116 update_test_SOURCES = \
117         update-test.c
118 update_test_CFLAGS = $(AM_CFLAGS)
119 update_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
120
121 querier_test_SOURCES = \
122         querier-test.c
123 querier_test_CFLAGS = $(AM_CFLAGS)
124 querier_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
125
126 conformance_test_SOURCES = \
127         conformance-test.c
128 conformance_test_CFLAGS = $(AM_CFLAGS)
129 conformance_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
130
131 avahi_reflector_SOURCES = \
132         avahi-reflector.c
133 avahi_reflector_CFLAGS = $(AM_CFLAGS)
134 avahi_reflector_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
135
136 dns_test_SOURCES = \
137         dns.c dns.h \
138         dns-test.c \
139         log.c log.h \
140         util.c util.h \
141         rr.c rr.h \
142         hashmap.c hashmap.h \
143         domain-util.c domain-util.h
144 dns_test_CFLAGS = $(AM_CFLAGS)
145 dns_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
146
147 dns_spin_test_SOURCES = \
148         dns-spin-test.c
149 dns_spin_test_CFLAGS = $(AM_CFLAGS)
150 dns_spin_test_LDADD = $(AM_LDADD) libavahi-core.la
151
152 timeeventq_test_SOURCES = \
153         timeeventq-test.c \
154         timeeventq.h timeeventq.c \
155         prioq.h prioq.c \
156         log.c log.h
157 timeeventq_test_CFLAGS = $(AM_CFLAGS)
158 timeeventq_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
159
160 hashmap_test_SOURCES = \
161         hashmap-test.c \
162         hashmap.h hashmap.c \
163         util.h util.c
164 hashmap_test_CFLAGS = $(AM_CFLAGS)
165 hashmap_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
166
167 valgrind: avahi-test
168         libtool --mode=execute valgrind ./avahi-test
169
170 gdb: avahi-test
171         libtool --mode=execute gdb ./avahi-test