mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
fbcc8d55ab
Original commit message from CVS: guilaunch manpage
33 lines
698 B
Makefile
33 lines
698 B
Makefile
|
|
if GST_DISABLE_REGISTRY
|
|
GST_REGISTRY_SRC =
|
|
else
|
|
GST_REGISTRY_SRC = gstreamer-register
|
|
endif
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = gstreamer-compprep
|
|
endif
|
|
|
|
if USE_GLIB2
|
|
GST_GUI_LAUNCH =
|
|
else
|
|
GST_GUI_LAUNCH = gstreamer-guilaunch
|
|
endif
|
|
|
|
bin_PROGRAMS = gstreamer-launch \
|
|
$(GST_GUI_LAUNCH) \
|
|
$(GST_REGISTRY_SRC) \
|
|
gstreamer-inspect \
|
|
$(GST_LOADSAVE_SRC) \
|
|
gstreamer-complete
|
|
|
|
man_MANS = gstreamer-launch.1 gstreamer-register.1 gstreamer-inspect.1 \
|
|
gstreamer-complete.1 gstreamer-compprep.1 gstreamer-guilaunch.1
|
|
|
|
LDADD = $(GST_LIBS)
|
|
CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" $(GLIB_CFLAGS) $(XML_CFLAGS)
|
|
|
|
EXTRA_DIST = $(man_MANS)
|