Home | History | Annotate | Download | only in avahi-compat-libdns_sd
      1 # This file is part of avahi.
      2 #
      3 # avahi is free software; you can redistribute it and/or modify it
      4 # under the terms of the GNU Lesser General Public License as
      5 # published by the Free Software Foundation; either version 2 of the
      6 # License, or (at your option) any later version.
      7 #
      8 # avahi is distributed in the hope that it will be useful, but WITHOUT
      9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
     10 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
     11 # License for more details.
     12 #
     13 # You should have received a copy of the GNU Lesser General Public
     14 # License along with avahi; if not, write to the Free Software
     15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
     16 # USA.
     17 
     18 AM_CFLAGS=-I$(top_srcdir)
     19 
     20 # This cool debug trap works on i386/gcc only
     21 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
     22 
     23 if HAVE_DBUS
     24 if ENABLE_COMPAT_LIBDNS_SD
     25 
     26 avahi_compat_libdns_sddir=$(includedir)/avahi-compat-libdns_sd
     27 
     28 avahi_compat_libdns_sd_HEADERS = dns_sd.h
     29 
     30 lib_LTLIBRARIES = libdns_sd.la
     31 
     32 if ENABLE_TESTS
     33 noinst_PROGRAMS = txt-test null-test
     34 endif
     35 
     36 libdns_sd_la_SOURCES = \
     37 	dns_sd.h \
     38 	compat.c \
     39 	txt.c \
     40 	unsupported.c \
     41 	warn.c warn.h
     42 libdns_sd_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
     43 libdns_sd_la_LDFLAGS = $(AM_LDFLAGS)  -version-info $(LIBAVAHI_COMPAT_LIBDNS_SD_VERSION_INFO) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS) ../avahi-common/libavahi-common.la ../avahi-client/libavahi-client.la
     44 
     45 txt_test_SOURCES = \
     46 	dns_sd.h \
     47 	txt.c \
     48 	txt-test.c \
     49 	warn.c warn.h
     50 txt_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
     51 txt_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS) ../avahi-common/libavahi-common.la
     52 
     53 null_test_SOURCES = \
     54 	dns_sd.h \
     55 	compat.c \
     56 	null-test.c \
     57 	warn.c warn.h
     58 null_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
     59 null_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS) ../avahi-common/libavahi-common.la ../avahi-client/libavahi-client.la
     60 
     61 # You can test the compatibility layer by sticking in mDNSResponder's
     62 # dns-sd.c source here, naming it "libdns_sd-test.c" and running "make
     63 # libdns_sd-test" manually. We do not distribute that file due to
     64 # licensing restrictions.
     65 
     66 libdns_sd-test: libdns_sd-test.c libdns_sd.la
     67 	$(LIBTOOL) --mode=compile $(CC) $(AM_CFLAGS) $(PTHREAD_CFLAGS) -o libdns_sd-test.o -c libdns_sd-test.c
     68 	$(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(PTHREAD_CFLAGS) -o libdns_sd-test libdns_sd-test.o $(PTHREAD_LIBS) ../avahi-common/libavahi-common.la libdns_sd.la
     69 
     70 CLEANFILES = libdns_sd-test.o libdns_sd-test
     71 
     72 endif
     73 endif
     74