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 18AM_CFLAGS=-I$(top_srcdir) 19 20# This cool debug trap works on i386/gcc only 21AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")' 22 23if HAVE_GLIB 24 25avahiglibincludedir=$(includedir)/avahi-glib 26 27avahiglibinclude_HEADERS = \ 28 glib-watch.h \ 29 glib-malloc.h 30 31lib_LTLIBRARIES = \ 32 libavahi-glib.la 33 34if ENABLE_TESTS 35noinst_PROGRAMS = \ 36 glib-watch-test 37endif 38 39libavahi_glib_la_SOURCES = \ 40 glib-watch.c glib-watch.h \ 41 glib-malloc.h glib-malloc.c 42 43libavahi_glib_la_CFLAGS = $(AM_CFLAGS) $(GLIB20_CFLAGS) 44libavahi_glib_la_LIBADD = $(AM_LDADD) ../avahi-common/libavahi-common.la $(GLIB20_LIBS) 45libavahi_glib_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBAVAHI_GLIB_VERSION_INFO) 46 47glib_watch_test_SOURCES = \ 48 glib-watch.c glib-watch.h \ 49 glib-watch-test.c 50glib_watch_test_CFLAGS = $(AM_CFLAGS) $(GLIB20_CFLAGS) 51glib_watch_test_LDADD = $(AM_LDADD) ../avahi-common/libavahi-common.la $(GLIB20_LIBS) 52 53Android.mk: Makefile.am 54 androgenizer -:PROJECT avahi -:SHARED avahi-glib -:TAGS eng debug \ 55 -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \ 56 -:SOURCES $(libavahi_glib_la_SOURCES) \ 57 -:CFLAGS $(DEFS) $(CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 58 $(libavahi_glib_la_CFLAGS) \ 59 -:CPPFLAGS $(CPPFLAGS) $(AM_CPPFLAGS) \ 60 -:LDFLAGS $(libavahi_glib_la_LDFLAGS) $(libavahi_glib_la_LIBADD) \ 61 > $@ 62 63endif 64