gstreamer/android/ges-launch.mk
Alessandro Decina 62a3a7ed8c 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
2011-04-11 17:15:55 +02:00

29 lines
625 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE:= ges-launch-0.10
#LOCAL_ARM_MODE := arm
LOCAL_SRC_FILES := ges-launch.c
LOCAL_SRC_FILES := $(addprefix ../tools/,$(LOCAL_SRC_FILES))
LOCAL_CFLAGS := $(GST_CFLAGS) \
-I$(GES_TOP) \
$(shell $(PKG_CONFIG) gstreamer-pbutils --cflags)
LOCAL_SHARED_LIBRARIES := \
libges-0.10 \
libgstpbutils-0.10 \
libgstcontroller-0.10 \
libgstvideo-0.10 \
libgstreamer-0.10 \
libglib-2.0 \
libgthread-2.0 \
libgmodule-2.0 \
libgobject-2.0
LOCAL_PRELINK_MODULE := false
LOCAL_MODULE_TAGS := optional
include $(BUILD_EXECUTABLE)