]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* Split out a fair bit of avahi-core into avahi-common for use by the client library
[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) ../avahi-common/libavahi-common.la
25
26 AM_CFLAGS+=-I$(top_srcdir)/avahi-common
27
28 # This cool debug trap works on i386/gcc only
29 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
30
31 avahiincludedir=$(includedir)/avahi-core 
32
33 avahiinclude_HEADERS =
34         core.h
35
36 lib_LTLIBRARIES = \
37         libavahi-core.la 
38
39 noinst_PROGRAMS = \
40         prioq-test \
41         avahi-test \
42         conformance-test \
43         avahi-reflector
44
45 libavahi_core_la_SOURCES = \
46         timeeventq.c timeeventq.h\
47         iface.c iface.h \
48         netlink.c netlink.h \
49         server.c server.h \
50         prioq.c prioq.h \
51         cache.c cache.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         rrlist.c rrlist.h \
59         resolve-host-name.c \
60         resolve-address.c \
61         browse-domain.c \
62         browse-service-type.c \
63         browse-service.c \
64         resolve-service.c
65
66 prioq_test_SOURCES = \
67         prioq-test.c  \
68         prioq.c prioq.h
69 prioq_test_CFLAGS = $(AM_CFLAGS)
70 prioq_test_LDADD = $(AM_LDADD)
71
72 avahi_test_SOURCES = \
73         avahi-test.c \
74         $(libavahi_core_la_SOURCES)
75 avahi_test_CFLAGS = $(AM_CFLAGS)
76 avahi_test_LDADD = $(AM_LDADD)
77
78 conformance_test_SOURCES = \
79         conformance-test.c \
80         $(libavahi_core_la_SOURCES)
81 conformance_test_CFLAGS = $(AM_CFLAGS)
82 conformance_test_LDADD = $(AM_LDADD)
83
84 avahi_reflector_SOURCES = \
85         avahi-reflector.c \
86         $(libavahi_core_la_SOURCES)
87 avahi_reflector_CFLAGS = $(AM_CFLAGS)
88 avahi_reflector_LDADD = $(AM_LDADD)
89
90 valgrind: avahi-test
91         libtool --mode=execute valgrind ./avahi-test
92
93 gdb: avahi-test
94         libtool --mode=execute gdb ./avahi-test