]> git.meshlink.io Git - catta/blob - avahi-compat-howl/Makefile.am
Add stubs for all exported functions
[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 = txt-test
53
54 libavahi_compat_howl_la_SOURCES = \
55         $(avahi_compat_howl_HEADERS) \
56         warn.c warn.h \
57         unsupported.c
58 libavahi_compat_howl_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) -I $(srcdir)/include
59 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
60
61 #txt_test_SOURCES = \
62 #       dns_sd.h \
63 #       txt.c \
64 #       txt-test.c \
65 #       warn.c warn.h
66 #txt_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
67 #txt_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la
68
69 # You can test the compatibility layer by sticking in mDNSResponder's
70 # dns-sd.c source here, naming it "libdns_sd-test.c" and running "make
71 # libdns_sd-test" manually. We do not distribute that file due to
72 # licensing restrictions.
73
74 #libdns_sd-test: libdns_sd-test.c libavahi-compat-libdns_sd.la
75 #       $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(PTHREAD_CFLAGS) -o libdns_sd-test.o -c libdns_sd-test.c 
76 #       $(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 
77
78 #CLEANFILES = libdns_sd-test.o libdns_sd-test
79
80 endif