]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* Add pkg-config files for avahi-glib/avahi-client
[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 # Import stuff from avahi-common
23 COMMON_LDADD=../avahi-common/libavahi-common.la
24
25 # Import stuff from avahi-glib
26 GLIB_LDADD=../avahi-glib/libavahi-glib.la
27
28 # This cool debug trap works on i386/gcc only
29 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
30
31 avahiincludedir=$(includedir)/avahi-core
32
33 avahiinclude_HEADERS = \
34         core.h \
35         log.h \
36         rr.h
37
38 lib_LTLIBRARIES = \
39         libavahi-core.la 
40
41 noinst_PROGRAMS = \
42         prioq-test \
43         avahi-test \
44         conformance-test \
45         avahi-reflector \
46         dns-test \
47         timeeventq-test \
48         hashmap-test
49
50 libavahi_core_la_SOURCES = \
51         timeeventq.c timeeventq.h\
52         iface.c iface.h \
53         netlink.c netlink.h \
54         server.c server.h \
55         prioq.c prioq.h \
56         cache.c cache.h\
57         socket.c socket.h \
58         response-sched.c response-sched.h \
59         query-sched.c query-sched.h \
60         probe-sched.c probe-sched.h \
61         announce.c announce.h \
62         browse.c browse.h \
63         rrlist.c rrlist.h \
64         resolve-host-name.c \
65         resolve-address.c \
66         browse-domain.c \
67         browse-service-type.c \
68         browse-service.c \
69         resolve-service.c \
70         dns.c dns.h \
71         rr.c rr.h \
72         core.h \
73         log.c log.h \
74         browse-dns-server.c \
75         fdutil.h fdutil.c \
76         util.c util.h \
77         hashmap.c hashmap.h
78
79 libavahi_core_la_CFLAGS = $(AM_CFLAGS)
80 libavahi_core_la_LIBADD = $(AM_LDADD) $(COMMON_LDADD)
81 libavahi_core_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info 0:0:0
82
83 prioq_test_SOURCES = \
84         prioq-test.c  \
85         prioq.c prioq.h
86 prioq_test_CFLAGS = $(AM_CFLAGS)
87 prioq_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
88
89 avahi_test_SOURCES = \
90         avahi-test.c
91 avahi_test_CFLAGS = $(AM_CFLAGS) $(GLIB20_CFLAGS)
92 avahi_test_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la $(GLIB_LDADD) $(GLIB20_LIBS)
93
94 conformance_test_SOURCES = \
95         conformance-test.c
96 conformance_test_CFLAGS = $(AM_CFLAGS) $(GLIB20_CFLAGS)
97 conformance_test_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la $(GLIB_LDADD) $(GLIB20_LIBS)
98
99 avahi_reflector_SOURCES = \
100         avahi-reflector.c
101 avahi_reflector_CFLAGS = $(AM_CFLAGS)
102 avahi_reflector_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la
103
104 dns_test_SOURCES = \
105         dns.c dns.h \
106         dns-test.c \
107         log.c log.h \
108         util.c util.h \
109         rr.c rr.h \
110         hashmap.c hashmap.h
111 dns_test_CFLAGS = $(AM_CFLAGS)
112 dns_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
113
114 timeeventq_test_SOURCES = \
115         timeeventq-test.c \
116         timeeventq.h timeeventq.c \
117         prioq.h prioq.c \
118         log.c log.h
119 timeeventq_test_CFLAGS = $(AM_CFLAGS)
120 timeeventq_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
121
122 hashmap_test_SOURCES = \
123         hashmap-test.c \
124         hashmap.h hashmap.c \
125         util.h util.c
126 hashmap_test_CFLAGS = $(AM_CFLAGS)
127 hashmap_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
128
129 valgrind: avahi-test
130         libtool --mode=execute valgrind ./avahi-test
131
132 gdb: avahi-test
133         libtool --mode=execute gdb ./avahi-test