]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
rename resolve.[ch] to browse.[ch]
[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 # This cool debug trap works on i386/gcc only
27 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
28
29 lib_LTLIBRARIES = \
30         libavahi-core.la 
31
32 noinst_PROGRAMS = \
33         dns-test \
34         domain-test \
35         prioq-test \
36         strlst-test \
37         avahi-test \
38         alternative-test \
39         conformance-test
40
41 libavahi_core_la_SOURCES = \
42         timeeventq.c timeeventq.h\
43         iface.c iface.h \
44         netlink.c netlink.h \
45         server.c server.h \
46         address.c address.h \
47         util.c util.h \
48         prioq.c prioq.h \
49         cache.c cache.h\
50         rr.c rr.h \
51         dns.c dns.h \
52         socket.c socket.h \
53         response-sched.c response-sched.h \
54         query-sched.c query-sched.h \
55         probe-sched.c probe-sched.h \
56         announce.c announce.h \
57         browse.c browse.h \
58         strlst.c strlst.h \
59         rrlist.c rrlist.h \
60         alternative.c alternative.h \
61         resolve-host-name.c \
62         resolve-address.c \
63         browse-domain.c
64
65 prioq_test_SOURCES = \
66         prioq-test.c  \
67         prioq.c prioq.h
68 prioq_test_CFLAGS = $(AM_CFLAGS)
69 prioq_test_LDADD = $(AM_LDADD)
70
71 strlst_test_SOURCES = \
72         strlst-test.c \
73         strlst.c strlst.h
74 strlst_test_CFLAGS = $(AM_CFLAGS)
75 strlst_test_LDADD = $(AM_LDADD)
76
77 domain_test_SOURCES = \
78         domain-test.c \
79         util.c util.h
80 domain_test_CFLAGS = $(AM_CFLAGS)
81 domain_test_LDADD = $(AM_LDADD)
82
83 dns_test_SOURCES = \
84         dns-test.c \
85         util.c util.h \
86         dns.c dns.h \
87         rr.c rr.h \
88         strlst.c strlst.h
89 dns_test_CFLAGS = $(AM_CFLAGS)
90 dns_test_LDADD = $(AM_LDADD)
91
92 avahi_test_SOURCES = \
93         avahi-test.c \
94         $(libavahi_core_la_SOURCES)
95 avahi_test_CFLAGS = $(AM_CFLAGS)
96 avahi_test_LDADD = $(AM_LDADD)
97
98 alternative_test_SOURCES = \
99         alternative-test.c \
100         alternative.c alternative.h
101 alternative_test_CFLAGS = $(AM_CFLAGS)
102 alternative_test_LDADD = $(AM_LDADD)
103
104 conformance_test_SOURCES = \
105         conformance-test.c \
106         $(libavahi_core_la_SOURCES)
107 conformance_test_CFLAGS = $(AM_CFLAGS)
108 conformance_test_LDADD = $(AM_LDADD)
109
110 valgrind: avahi-test
111         libtool --mode=execute valgrind ./avahi-test
112
113 gdb: avahi-test
114         libtool --mode=execute gdb ./avahi-test