2015-02-20 21:04:22 +00:00
|
|
|
if ENABLE_BASH_COMPLETION
|
|
|
|
bin_PROGRAMS = gst-completion-helper-@GST_API_VERSION@
|
|
|
|
|
|
|
|
gst_completion_helper_@GST_API_VERSION@_SOURCES = gst-completion-helper.c
|
|
|
|
gst_completion_helper_@GST_API_VERSION@_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
gst_completion_helper_@GST_API_VERSION@_LDADD = $(GST_OBJ_LIBS)
|
|
|
|
|
|
|
|
bashhelpersdir = $(BASH_HELPERS_DIR)
|
|
|
|
dist_bashhelpers_DATA = gst
|
|
|
|
|
2015-04-15 11:02:36 +00:00
|
|
|
install-exec-hook:
|
2015-04-17 11:02:12 +00:00
|
|
|
$(MKDIR_P) $(DESTDIR)$(BASH_HELPERS_DIR) && \
|
2015-04-17 13:19:07 +00:00
|
|
|
cd $(DESTDIR)$(bindir) && \
|
2015-04-15 12:45:21 +00:00
|
|
|
$(INSTALL) `echo "gst-completion-helper-" | sed '$(transform)'`@GST_API_VERSION@$(EXEEXT) \
|
2015-04-17 11:02:12 +00:00
|
|
|
$(DESTDIR)$(BASH_HELPERS_DIR)/gst-completion-helper-@GST_API_VERSION@$(EXEEXT) && \
|
2015-04-15 12:45:21 +00:00
|
|
|
rm `echo "gst-completion-helper-" | sed '$(transform)'`@GST_API_VERSION@$(EXEEXT)
|
2015-03-24 18:30:52 +00:00
|
|
|
|
|
|
|
uninstall-hook:
|
|
|
|
rm -f $(DESTDIR)$(BASH_HELPERS_DIR)/gst-completion-helper-@GST_API_VERSION@$(EXEEXT)
|
2015-02-20 21:04:22 +00:00
|
|
|
endif
|
|
|
|
|
2009-11-16 00:12:22 +00:00
|
|
|
helpers_PROGRAMS = gst-plugin-scanner
|
2012-04-04 11:13:52 +00:00
|
|
|
helpersdir=$(libexecdir)/gstreamer-$(GST_API_VERSION)
|
2009-03-14 23:07:40 +00:00
|
|
|
|
2009-11-16 00:12:22 +00:00
|
|
|
gst_plugin_scanner_SOURCES = gst-plugin-scanner.c
|
|
|
|
gst_plugin_scanner_CFLAGS = $(GST_OBJ_CFLAGS)
|
2010-04-08 08:14:24 +00:00
|
|
|
gst_plugin_scanner_LDADD = $(GST_OBJ_LIBS)
|
2009-11-16 00:12:22 +00:00
|
|
|
|
2011-01-27 13:33:08 +00:00
|
|
|
Android.mk: Makefile.am
|
|
|
|
androgenizer -:PROJECT gstreamer -:EXECUTABLE gst-plugin-scanner -:TAGS eng debug \
|
|
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
|
|
-:SOURCES $(gst_plugin_scanner_SOURCES) \
|
|
|
|
-:CFLAGS $(gst_plugin_scanner_CFLAGS) \
|
|
|
|
-:LDFLAGS $(gst_plugin_scanner_LDADD) \
|
|
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
|
|
> $@
|
|
|
|
|
2009-11-16 00:12:22 +00:00
|
|
|
# clean out the old one to make sure everything is udpated correctly
|
|
|
|
# remove again after release
|
|
|
|
CLEANFILES = plugin-scanner
|
2015-03-24 18:30:52 +00:00
|
|
|
|
|
|
|
if ENABLE_BASH_COMPLETION
|
|
|
|
CLEANFILES += gst-completion-helper-@GST_API_VERSION@
|
|
|
|
endif
|