]> git.meshlink.io Git - catta/blob - avahi-core/Makefile.am
* fix pkgconfig file
[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 avahiincludedir=$(includedir)/avahi-core
30
31 avahiinclude_HEADERS = \
32         rr.h \
33         address.h \
34         strlst.h \
35         core.h \
36         alternative.h
37
38 lib_LTLIBRARIES = \
39         libavahi-core.la 
40
41 noinst_PROGRAMS = \
42         dns-test \
43         domain-test \
44         prioq-test \
45         strlst-test \
46         avahi-test \
47         alternative-test \
48         conformance-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         address.c address.h \
56         util.c util.h \
57         prioq.c prioq.h \
58         cache.c cache.h\
59         rr.c rr.h \
60         dns.c dns.h \
61         socket.c socket.h \
62         response-sched.c response-sched.h \
63         query-sched.c query-sched.h \
64         probe-sched.c probe-sched.h \
65         announce.c announce.h \
66         browse.c browse.h \
67         strlst.c strlst.h \
68         rrlist.c rrlist.h \
69         alternative.c alternative.h \
70         resolve-host-name.c \
71         resolve-address.c \
72         browse-domain.c \
73         browse-service-type.c \
74         browse-service.c \
75         resolve-service.c
76
77 prioq_test_SOURCES = \
78         prioq-test.c  \
79         prioq.c prioq.h
80 prioq_test_CFLAGS = $(AM_CFLAGS)
81 prioq_test_LDADD = $(AM_LDADD)
82
83 strlst_test_SOURCES = \
84         strlst-test.c \
85         strlst.c strlst.h
86 strlst_test_CFLAGS = $(AM_CFLAGS)
87 strlst_test_LDADD = $(AM_LDADD)
88
89 domain_test_SOURCES = \
90         domain-test.c \
91         util.c util.h
92 domain_test_CFLAGS = $(AM_CFLAGS)
93 domain_test_LDADD = $(AM_LDADD)
94
95 dns_test_SOURCES = \
96         dns-test.c \
97         util.c util.h \
98         dns.c dns.h \
99         rr.c rr.h \
100         strlst.c strlst.h
101 dns_test_CFLAGS = $(AM_CFLAGS)
102 dns_test_LDADD = $(AM_LDADD)
103
104 avahi_test_SOURCES = \
105         avahi-test.c \
106         $(libavahi_core_la_SOURCES)
107 avahi_test_CFLAGS = $(AM_CFLAGS)
108 avahi_test_LDADD = $(AM_LDADD)
109
110 alternative_test_SOURCES = \
111         alternative-test.c \
112         alternative.c alternative.h
113 alternative_test_CFLAGS = $(AM_CFLAGS)
114 alternative_test_LDADD = $(AM_LDADD)
115
116 conformance_test_SOURCES = \
117         conformance-test.c \
118         $(libavahi_core_la_SOURCES)
119 conformance_test_CFLAGS = $(AM_CFLAGS)
120 conformance_test_LDADD = $(AM_LDADD)
121
122 valgrind: avahi-test
123         libtool --mode=execute valgrind ./avahi-test
124
125 gdb: avahi-test
126         libtool --mode=execute gdb ./avahi-test