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