]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
move definition of libtool version info data to configure.ac
[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
32 lib_LTLIBRARIES = \
33         libavahi-core.la 
34
35 noinst_PROGRAMS = \
36         prioq-test \
37         avahi-test \
38         conformance-test \
39         avahi-reflector \
40         dns-test \
41         timeeventq-test \
42         hashmap-test
43
44 libavahi_core_la_SOURCES = \
45         timeeventq.c timeeventq.h\
46         iface.c iface.h \
47         netlink.c netlink.h \
48         server.c server.h \
49         prioq.c prioq.h \
50         cache.c cache.h\
51         socket.c socket.h \
52         response-sched.c response-sched.h \
53         query-sched.c query-sched.h \
54         probe-sched.c probe-sched.h \
55         announce.c announce.h \
56         browse.c browse.h \
57         rrlist.c rrlist.h \
58         resolve-host-name.c \
59         resolve-address.c \
60         browse-domain.c \
61         browse-service-type.c \
62         browse-service.c \
63         resolve-service.c \
64         dns.c dns.h \
65         rr.c rr.h \
66         core.h \
67         log.c log.h \
68         browse-dns-server.c \
69         fdutil.h fdutil.c \
70         util.c util.h \
71         hashmap.c hashmap.h
72
73 libavahi_core_la_CFLAGS = $(AM_CFLAGS)
74 libavahi_core_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
75 libavahi_core_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_CORE_VERSION_INFO)
76
77 prioq_test_SOURCES = \
78         prioq-test.c  \
79         prioq.c prioq.h
80 prioq_test_CFLAGS = $(AM_CFLAGS)
81 prioq_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
82
83 avahi_test_SOURCES = \
84         avahi-test.c
85 avahi_test_CFLAGS = $(AM_CFLAGS)
86 avahi_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
87
88 conformance_test_SOURCES = \
89         conformance-test.c
90 conformance_test_CFLAGS = $(AM_CFLAGS)
91 conformance_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
92
93 avahi_reflector_SOURCES = \
94         avahi-reflector.c
95 avahi_reflector_CFLAGS = $(AM_CFLAGS)
96 avahi_reflector_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la libavahi-core.la
97
98 dns_test_SOURCES = \
99         dns.c dns.h \
100         dns-test.c \
101         log.c log.h \
102         util.c util.h \
103         rr.c rr.h \
104         hashmap.c hashmap.h
105 dns_test_CFLAGS = $(AM_CFLAGS)
106 dns_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
107
108 timeeventq_test_SOURCES = \
109         timeeventq-test.c \
110         timeeventq.h timeeventq.c \
111         prioq.h prioq.c \
112         log.c log.h
113 timeeventq_test_CFLAGS = $(AM_CFLAGS)
114 timeeventq_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
115
116 hashmap_test_SOURCES = \
117         hashmap-test.c \
118         hashmap.h hashmap.c \
119         util.h util.c
120 hashmap_test_CFLAGS = $(AM_CFLAGS)
121 hashmap_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
122
123 valgrind: avahi-test
124         libtool --mode=execute valgrind ./avahi-test
125
126 gdb: avahi-test
127         libtool --mode=execute gdb ./avahi-test