Home | History | Annotate | Download | only in avahi-client
      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 
     25 avahi_clientincludedir=$(includedir)/avahi-client
     26 avahi_clientinclude_HEADERS = client.h lookup.h publish.h
     27 
     28 noinst_HEADERS = internal.h
     29 
     30 if ENABLE_TESTS
     31 
     32 noinst_PROGRAMS = \
     33 	client-test \
     34 	srv-test \
     35 	xdg-config-test \
     36 	rr-test \
     37 	check-nss-test
     38 
     39 endif
     40 
     41 lib_LTLIBRARIES = libavahi-client.la
     42 
     43 libavahi_client_la_SOURCES = \
     44 	client.c client.h \
     45 	entrygroup.c \
     46 	browser.c \
     47 	resolver.c \
     48 	publish.h lookup.h \
     49 	xdg-config.c xdg-config.h \
     50 	check-nss.c \
     51 	../avahi-common/dbus.c ../avahi-common/dbus.h \
     52 	../avahi-common/dbus-watch-glue.c ../avahi-common/dbus-watch-glue.h
     53 
     54 libavahi_client_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS) -DDBUS_SYSTEM_BUS_DEFAULT_ADDRESS=\"$(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)\"
     55 libavahi_client_la_LIBADD = $(AM_LDADD) $(DBUS_LIBS) ../avahi-common/libavahi-common.la
     56 libavahi_client_la_LDFLAGS = $(AM_LDFLAGS)  -version-info $(LIBAVAHI_CLIENT_VERSION_INFO)
     57 
     58 client_test_SOURCES = client-test.c
     59 client_test_CFLAGS = $(AM_CFLAGS)
     60 client_test_LDADD = $(AM_LDADD) libavahi-client.la ../avahi-common/libavahi-common.la
     61 
     62 srv_test_SOURCES = srv-test.c
     63 srv_test_CFLAGS = $(AM_CFLAGS)
     64 srv_test_LDADD = $(AM_LDADD) libavahi-client.la ../avahi-common/libavahi-common.la
     65 
     66 rr_test_SOURCES = rr-test.c
     67 rr_test_CFLAGS = $(AM_CFLAGS)
     68 rr_test_LDADD = $(AM_LDADD) libavahi-client.la ../avahi-common/libavahi-common.la
     69 
     70 xdg_config_test_SOURCES = xdg-config-test.c xdg-config.c xdg-config.h
     71 xdg_config_test_CFLAGS = $(AM_CFLAGS)
     72 xdg_config_test_LDADD = $(AM_LDADD)
     73 
     74 check_nss_test_SOURCES = check-nss.c check-nss-test.c client.h
     75 check_nss_test_CFLAGS = $(AM_CFLAGS)
     76 check_nss_test_LDADD = $(AM_LDADD)
     77 
     78 if HAVE_DLOPEN
     79 check_nss_test_LDADD += -ldl
     80 libavahi_client_la_LIBADD += -ldl
     81 endif
     82 
     83 Android.mk: Makefile.am
     84 	androgenizer -:PROJECT avahi -:SHARED avahi-client -:TAGS eng debug \
     85 	 -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
     86 	 -:SOURCES $(libavahi_client_la_SOURCES) \
     87 	 -:CFLAGS $(DEFS) $(CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) \
     88 	  $(AM_CFLAGS) $(libavahi_client_la_CFLAGS) \
     89 	 -:CPPFLAGS $(CPPFLAGS) $(AM_CPPFLAGS) \
     90 	 -:LDFLAGS $(libavahi_client_la_LIBADD) $(libavahi_client_la_LDADD) \
     91 	> $@
     92 endif
     93