]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
rename libavahi-core to avahi-core
[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
56 prioq_test_SOURCES = \
57         prioq-test.c  \
58         prioq.c prioq.h
59 prioq_test_CFLAGS = $(AM_CFLAGS)
60 prioq_test_LDADD = $(AM_LDADD)
61
62 strlst_test_SOURCES = \
63         strlst-test.c \
64         strlst.c strlst.h
65 strlst_test_CFLAGS = $(AM_CFLAGS)
66 strlst_test_LDADD = $(AM_LDADD)
67
68 domain_test_SOURCES = \
69         domain-test.c \
70         util.c util.h
71 domain_test_CFLAGS = $(AM_CFLAGS)
72 domain_test_LDADD = $(AM_LDADD)
73
74 dns_test_SOURCES = \
75         dns-test.c \
76         util.c util.h \
77         dns.c dns.h \
78         rr.c rr.h \
79         strlst.c strlst.h
80 dns_test_CFLAGS = $(AM_CFLAGS)
81 dns_test_LDADD = $(AM_LDADD)
82
83 avahi_test_SOURCES = \
84         avahi-test.c
85 avahi_test_CFLAGS = $(AM_CFLAGS)
86 avahi_test_LDADD = $(AM_LDADD) libavahi-core.la
87
88