diff options
author | jk7744.park <jk7744.park@samsung.com> | 2015-10-24 16:49:08 +0900 |
---|---|---|
committer | jk7744.park <jk7744.park@samsung.com> | 2015-10-24 16:49:08 +0900 |
commit | 32e864f0f32b7628d995e84d07646b01dc5bf2d5 (patch) | |
tree | 27f97eaa1ca7e171815e4f88b348448b05f02748 /gst/icydemux/Makefile.am | |
parent | 9093d777f57b3f1dc62010bb8e0c7ed3d72a76d2 (diff) | |
download | gst-plugins-good-accepted/tizen_2.4_mobile.tar.gz gst-plugins-good-accepted/tizen_2.4_mobile.tar.bz2 gst-plugins-good-accepted/tizen_2.4_mobile.zip |
tizen 2.4 releasetizen_2.4_mobile_releasesubmit/tizen_2.4/20151028.064339accepted/tizen/2.4/mobile/20151029.032704accepted/tizen_2.4_mobile
Diffstat (limited to 'gst/icydemux/Makefile.am')
-rw-r--r-- | gst/icydemux/Makefile.am | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gst/icydemux/Makefile.am b/gst/icydemux/Makefile.am new file mode 100644 index 0000000..f7a4a82 --- /dev/null +++ b/gst/icydemux/Makefile.am @@ -0,0 +1,23 @@ +plugin_LTLIBRARIES = libgsticydemux.la + +libgsticydemux_la_SOURCES = gsticydemux.c +libgsticydemux_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) +libgsticydemux_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgsttag-@GST_API_VERSION@ $(GST_BASE_LIBS) $(GST_LIBS) $(ZLIB_LIBS) +libgsticydemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgsticydemux_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) + +noinst_HEADERS = gsticydemux.h + +Android.mk: Makefile.am $(BUILT_SOURCES) + androgenizer \ + -:PROJECT libgsticydemux -:SHARED libgsticydemux \ + -:TAGS eng debug \ + -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \ + -:SOURCES $(libgsticydemux_la_SOURCES) \ + -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgsticydemux_la_CFLAGS) \ + -:LDFLAGS $(libgsticydemux_la_LDFLAGS) \ + $(libgsticydemux_la_LIBADD) \ + -ldl \ + -:PASSTHROUGH LOCAL_ARM_MODE:=arm \ + LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \ + > $@ |