mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d6b4919ac1
Original commit message from CVS: * tools/Makefile.am: * tools/gst-launch-ext-m.m: Remove gst-launch-ext. It doesn't work, and is no longer particularly useful.
26 lines
544 B
Makefile
26 lines
544 B
Makefile
bin_SCRIPTS = \
|
|
gst-visualise-@GST_MAJORMINOR@
|
|
|
|
man_MANS = \
|
|
gst-visualise-@GST_MAJORMINOR@.1
|
|
|
|
CLEANFILES = $(man_MANS) $(bin_SCRIPTS)
|
|
|
|
EXTRA_DIST = \
|
|
gst-visualise-m.m gst-visualise.1.in
|
|
|
|
# generate versioned scripts from templates
|
|
%-@GST_MAJORMINOR@: %-m.m
|
|
sed -e s,\@GST_MAJORMINOR\@,@GST_MAJORMINOR@,g $< > $@
|
|
chmod +x $@
|
|
|
|
# generate man pages
|
|
%-@GST_MAJORMINOR@.1: %.1.in
|
|
sed \
|
|
-e s,gst-visualise,gst-visualise-@GST_MAJORMINOR@,g \
|
|
$< >$@
|
|
|
|
all: all-am chmod
|
|
|
|
chmod: $(bin_SCRIPTS)
|
|
chmod +x $^
|