]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* split packet scheduler into three seperate parts
[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         subscribe.c subscribe.h \
58         strlst.c strlst.h \
59         rrlist.c rrlist.h
60
61 prioq_test_SOURCES = \
62         prioq-test.c  \
63         prioq.c prioq.h
64 prioq_test_CFLAGS = $(AM_CFLAGS)
65 prioq_test_LDADD = $(AM_LDADD)
66
67 strlst_test_SOURCES = \
68         strlst-test.c \
69         strlst.c strlst.h
70 strlst_test_CFLAGS = $(AM_CFLAGS)
71 strlst_test_LDADD = $(AM_LDADD)
72
73 domain_test_SOURCES = \
74         domain-test.c \
75         util.c util.h
76 domain_test_CFLAGS = $(AM_CFLAGS)
77 domain_test_LDADD = $(AM_LDADD)
78
79 dns_test_SOURCES = \
80         dns-test.c \
81         util.c util.h \
82         dns.c dns.h \
83         rr.c rr.h \
84         strlst.c strlst.h
85 dns_test_CFLAGS = $(AM_CFLAGS)
86 dns_test_LDADD = $(AM_LDADD)
87
88 avahi_test_SOURCES = \
89         avahi-test.c \
90         $(libavahi_core_la_SOURCES)
91 avahi_test_CFLAGS = $(AM_CFLAGS)
92 avahi_test_LDADD = $(AM_LDADD)
93
94 alternative_test_SOURCES = \
95         alternative-test.c \
96         util.c util.h
97 alternative_test_CFLAGS = $(AM_CFLAGS)
98 alternative_test_LDADD = $(AM_LDADD)
99
100 conformance_test_SOURCES = \
101         conformance-test.c \
102         $(libavahi_core_la_SOURCES)
103 conformance_test_CFLAGS = $(AM_CFLAGS)
104 conformance_test_LDADD = $(AM_LDADD)
105
106 valgrind: avahi-test
107         libtool --mode=execute valgrind ./avahi-test
108
109 gdb: avahi-test
110         libtool --mode=execute gdb ./avahi-test