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