]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* add auxiliary records to packet
[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
39 libavahi_core_la_SOURCES = \
40         timeeventq.c timeeventq.h\
41         iface.c iface.h \
42         netlink.c netlink.h \
43         server.c server.h \
44         address.c address.h \
45         util.c util.h \
46         prioq.c prioq.h \
47         cache.c cache.h\
48         rr.c rr.h \
49         dns.c dns.h \
50         socket.c socket.h \
51         psched.c psched.h \
52         announce.c announce.h \
53         subscribe.c subscribe.h \
54         strlst.c strlst.h \
55         rrlist.c rrlist.h
56
57 prioq_test_SOURCES = \
58         prioq-test.c  \
59         prioq.c prioq.h
60 prioq_test_CFLAGS = $(AM_CFLAGS)
61 prioq_test_LDADD = $(AM_LDADD)
62
63 strlst_test_SOURCES = \
64         strlst-test.c \
65         strlst.c strlst.h
66 strlst_test_CFLAGS = $(AM_CFLAGS)
67 strlst_test_LDADD = $(AM_LDADD)
68
69 domain_test_SOURCES = \
70         domain-test.c \
71         util.c util.h
72 domain_test_CFLAGS = $(AM_CFLAGS)
73 domain_test_LDADD = $(AM_LDADD)
74
75 dns_test_SOURCES = \
76         dns-test.c \
77         util.c util.h \
78         dns.c dns.h \
79         rr.c rr.h \
80         strlst.c strlst.h
81 dns_test_CFLAGS = $(AM_CFLAGS)
82 dns_test_LDADD = $(AM_LDADD)
83
84 avahi_test_SOURCES = \
85         avahi-test.c
86 avahi_test_CFLAGS = $(AM_CFLAGS)
87 avahi_test_LDADD = $(AM_LDADD) libavahi-core.la
88
89 valgrind: avahi-test
90         libtool --mode=execute valgrind ./avahi-test
91
92 gdb: avahi-test
93         libtool --mode=execute gdb ./avahi-test