]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
c71d6edde8cee3328d1cafcf08dc35f09dda3dd8
[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)
21
22 # GLIB 2.0
23 AM_CFLAGS+=$(GLIB20_CFLAGS)
24 AM_LDADD=$(GLIB20_LIBS)
25
26 # Import stuff from avahi-common
27 COMMON_LDADD=../avahi-common/libavahi-common.la
28
29 # This cool debug trap works on i386/gcc only
30 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
31
32 avahiincludedir=$(includedir)/avahi-core
33
34 avahiinclude_HEADERS = \
35         core.h \
36         log.h \
37         rr.h
38
39 lib_LTLIBRARIES = \
40         libavahi-core.la 
41
42 noinst_PROGRAMS = \
43         prioq-test \
44         avahi-test \
45         conformance-test \
46         avahi-reflector \
47         dns-test \
48         timeeventq-test
49
50 libavahi_core_la_SOURCES = \
51         timeeventq.c timeeventq.h\
52         iface.c iface.h \
53         netlink.c netlink.h \
54         server.c server.h \
55         prioq.c prioq.h \
56         cache.c cache.h\
57         socket.c socket.h \
58         response-sched.c response-sched.h \
59         query-sched.c query-sched.h \
60         probe-sched.c probe-sched.h \
61         announce.c announce.h \
62         browse.c browse.h \
63         rrlist.c rrlist.h \
64         resolve-host-name.c \
65         resolve-address.c \
66         browse-domain.c \
67         browse-service-type.c \
68         browse-service.c \
69         resolve-service.c \
70         dns.c dns.h \
71         rr.c rr.h \
72         core.h \
73         log.c log.h \
74         browse-dns-server.c \
75         fdutil.h fdutil.c \
76         util.c util.h
77
78 libavahi_core_la_CFLAGS = $(AM_CFLAGS)
79 libavahi_core_la_LIBADD = $(AM_LDADD) $(COMMON_LDADD)
80
81 prioq_test_SOURCES = \
82         prioq-test.c  \
83         prioq.c prioq.h
84 prioq_test_CFLAGS = $(AM_CFLAGS)
85 prioq_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
86
87 avahi_test_SOURCES = \
88         avahi-test.c
89 avahi_test_CFLAGS = $(AM_CFLAGS)
90 avahi_test_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la
91
92 conformance_test_SOURCES = \
93         conformance-test.c
94 conformance_test_CFLAGS = $(AM_CFLAGS)
95 conformance_test_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la
96
97 avahi_reflector_SOURCES = \
98         avahi-reflector.c
99 avahi_reflector_CFLAGS = $(AM_CFLAGS)
100 avahi_reflector_LDADD = $(AM_LDADD) $(COMMON_LDADD) libavahi-core.la
101
102 dns_test_SOURCES = \
103         dns.c dns.h \
104         dns-test.c \
105         log.c log.h \
106         util.c util.h \
107         rr.c rr.h
108 dns_test_CFLAGS = $(AM_CFLAGS)
109 dns_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
110
111 timeeventq_test_SOURCES = \
112         timeeventq-test.c \
113         timeeventq.h timeeventq.c \
114         prioq.h prioq.c
115 timeeventq_test_CFLAGS = $(AM_CFLAGS)
116 timeeventq_test_LDADD = $(AM_LDADD) $(COMMON_LDADD)
117
118 valgrind: avahi-test
119         libtool --mode=execute valgrind ./avahi-test
120
121 gdb: avahi-test
122         libtool --mode=execute gdb ./avahi-test