summaryrefslogtreecommitdiff
path: root/gst/audiotestsrc
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.d@gmail.com>2011-01-27 17:28:51 +0100
committerEdward Hervey <edward.hervey@collabora.co.uk>2011-04-11 07:23:21 +0200
commit030f639a8e4eb1ab2fcf03301d0a39168e7e3ab7 (patch)
treebe856ddc7540abdd1eb2ff0098050aba8555f698 /gst/audiotestsrc
parentd7413f2a72edb1921482d37e2774a3e21c3e2c49 (diff)
android: make it ready for androgenizer
Remove the android/ top dir Fixe the Makefile.am to be androgenized To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files. Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
Diffstat (limited to 'gst/audiotestsrc')
-rw-r--r--gst/audiotestsrc/Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/gst/audiotestsrc/Makefile.am b/gst/audiotestsrc/Makefile.am
index af7564de3..67a2c0bbb 100644
--- a/gst/audiotestsrc/Makefile.am
+++ b/gst/audiotestsrc/Makefile.am
@@ -7,3 +7,17 @@ libgstaudiotestsrc_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GST_CONTROLLER_LIB
libgstaudiotestsrc_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstaudiotestsrc.h
+
+Android.mk: Makefile.am $(BUILT_SOURCES)
+ androgenizer \
+ -:PROJECT libgstaudiotestsrc -:SHARED libgstaudiotestsrc \
+ -:TAGS eng debug \
+ -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
+ -:SOURCES $(libgstaudiotestsrc_la_SOURCES) \
+ -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstaudiotestsrc_la_CFLAGS) \
+ -:LDFLAGS $(libgstaudiotestsrc_la_LDFLAGS) \
+ $(libgstaudiotestsrc_la_LIBADD) \
+ -ldl \
+ -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
+ LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
+ > $@