]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* add logging API and make all code make use of it
[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) -D_GNU_SOURCE
21
22 # GLIB 2.0
23 AM_CFLAGS+=$(GLIB20_CFLAGS)
24 AM_LDADD=$(GLIB20_LIBS)
25
26 # Import stuff from avahi-common
27 AM_CFLAGS+=-I$(top_srcdir)/avahi-common 
28 COMMON_LDADD=../avahi-common/libavahi-common.la
29 STATIC_COMMON_LDADD=../avahi-common/libavahi-common-static.a
30
31 # This cool debug trap works on i386/gcc only
32 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
33
34 avahiincludedir=$(includedir)/avahi-core 
35
36 avahiinclude_HEADERS =
37         core.h
38
39 lib_LTLIBRARIES = \
40         libavahi-core.la 
41
42 noinst_PROGRAMS = \
43         prioq-test \
44         avahi-test \
45         conformance-test \
46         avahi-reflector \
47         dns-test
48
49 libavahi_core_la_SOURCES = \
50         timeeventq.c timeeventq.h\
51         iface.c iface.h \
52         netlink.c netlink.h \
53         server.c server.h \
54         prioq.c prioq.h \
55         cache.c cache.h\
56         socket.c socket.h \
57         response-sched.c response-sched.h \
58         query-sched.c query-sched.h \
59         probe-sched.c probe-sched.h \
60         announce.c announce.h \
61         browse.c browse.h \
62         rrlist.c rrlist.h \
63         resolve-host-name.c \
64         resolve-address.c \
65         browse-domain.c \
66         browse-service-type.c \
67         browse-service.c \
68         resolve-service.c \
69         dns.c dns.h \
70         core.h \
71         llist.h \
72         log.c log.h
73 libavahi_core_la_CFLAGS = $(AM_CFLAGS)
74 libavahi_core_la_LIBADD = $(AM_LDADD) $(COMMON_LDADD)
75
76 prioq_test_SOURCES = \
77         prioq-test.c  \
78         prioq.c prioq.h
79 prioq_test_CFLAGS = $(AM_CFLAGS)
80 prioq_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD)
81
82 avahi_test_SOURCES = \
83         avahi-test.c \
84         $(libavahi_core_la_SOURCES)
85 avahi_test_CFLAGS = $(AM_CFLAGS)
86 avahi_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD)
87
88 conformance_test_SOURCES = \
89         conformance-test.c \
90         $(libavahi_core_la_SOURCES)
91 conformance_test_CFLAGS = $(AM_CFLAGS)
92 conformance_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD)
93
94 avahi_reflector_SOURCES = \
95         avahi-reflector.c \
96         $(libavahi_core_la_SOURCES)
97 avahi_reflector_CFLAGS = $(AM_CFLAGS)
98 avahi_reflector_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD)
99
100 dns_test_SOURCES = \
101         dns.c dns.h \
102         dns-test.c \
103         log.c log.h
104 dns_test_CFLAGS = $(AM_CFLAGS)
105 dns_test_LDADD = $(AM_LDADD) $(STATIC_COMMON_LDADD)
106
107 valgrind: avahi-test
108         libtool --mode=execute valgrind ./avahi-test
109
110 gdb: avahi-test
111         libtool --mode=execute gdb ./avahi-test