]> git.meshlink.io Git - catta/blob - avahi-compat-howl/Makefile.am
398f02950416919532479cbeea3969d5b0786be6
[catta] / avahi-compat-howl / 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 # This cool debug trap works on i386/gcc only
23 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
24
25 if HAVE_DBUS
26
27 avahi_compat_howldir=$(includedir)/avahi-compat-howl
28
29 avahi_compat_howl_HEADERS = \
30         include/howl.h \
31         include/rendezvous/rendezvous.h \
32         include/rendezvous/text_record.h \
33         include/corby/message.h \
34         include/corby/object.h \
35         include/corby/orb.h \
36         include/corby/corby.h \
37         include/corby/channel.h \
38         include/corby/buffer.h \
39         include/discovery/discovery.h \
40         include/discovery/text_record.h \
41         include/salt/socket.h \
42         include/salt/address.h \
43         include/salt/platform.h \
44         include/salt/signal.h \
45         include/salt/interface.h \
46         include/salt/salt.h \
47         include/salt/time.h \
48         include/salt/debug.h
49
50 lib_LTLIBRARIES = libavahi-compat-howl.la 
51
52 noinst_PROGRAMS = address-test text-test
53
54 libavahi_compat_howl_la_SOURCES = \
55         $(avahi_compat_howl_HEADERS) \
56         warn.c warn.h \
57         unsupported.c \
58         address.c \
59         text.c
60 libavahi_compat_howl_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I $(srcdir)/include
61 libavahi_compat_howl_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_COMPAT_HOWL_VERSION_INFO) $(PTHREAD_LIBS) ../avahi-common/libavahi-common.la ../avahi-client/libavahi-client.la
62
63 address_test_SOURCES = \
64         $(avahi_compat_howl_HEADERS) \
65         address.c \
66         address-test.c \
67         warn.c warn.h 
68 address_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I $(srcdir)/include
69 address_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
70
71 text_test_SOURCES = \
72         $(avahi_compat_howl_HEADERS) \
73         text.c \
74         text-test.c \
75         warn.c warn.h 
76 text_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I $(srcdir)/include
77 text_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
78
79
80 # You can test the compatibility layer by sticking in mDNSResponder's
81 # dns-sd.c source here, naming it "libdns_sd-test.c" and running "make
82 # libdns_sd-test" manually. We do not distribute that file due to
83 # licensing restrictions.
84
85 #libdns_sd-test: libdns_sd-test.c libavahi-compat-libdns_sd.la
86 #       $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) -o libdns_sd-test.o -c libdns_sd-test.c 
87 #       $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) -o libdns_sd-test libdns_sd-test.o $(PTHREAD_LIBS) ../avahi-common/libavahi-common.la libavahi-compat-libdns_sd.la 
88
89 #CLEANFILES = libdns_sd-test.o libdns_sd-test
90
91 endif