mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 21:31:27 +00:00
9e7087cf0e
Original commit message from CVS: added xmllaunch man page
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
if GST_DISABLE_REGISTRY
|
|
GST_REGISTRY_SRC =
|
|
else
|
|
GST_REGISTRY_SRC = gst-register
|
|
endif
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = gst-compprep gst-xmllaunch
|
|
endif
|
|
|
|
bin_PROGRAMS = gst-launch \
|
|
$(GST_REGISTRY_SRC) \
|
|
gst-inspect \
|
|
$(GST_LOADSAVE_SRC) \
|
|
gst-complete
|
|
|
|
man_MANS = gst-launch.1 gst-register.1 gst-inspect.1 \
|
|
gst-complete.1 gst-compprep.1 gst-xmllaunch.1
|
|
|
|
gst_launch_LDADD = $(GST_LIBS) #-lefence
|
|
gst_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
if !GST_DISABLE_REGISTRY
|
|
gst_register_LDADD = $(GST_LIBS)
|
|
gst_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
endif
|
|
|
|
gst_inspect_LDADD = $(GST_LIBS)
|
|
gst_inspect_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
gst_complete_LDADD = $(GST_LIBS)
|
|
gst_complete_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
if !GST_DISABLE_LOADSAVE
|
|
gst_compprep_LDADD = $(GST_LIBS)
|
|
gst_compprep_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
gst_xmllaunch_SOURCES = gst-launch.c
|
|
gst_xmllaunch_LDADD = $(GST_LIBS)
|
|
gst_xmllaunch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
endif
|
|
|
|
EXTRA_DIST = $(man_MANS)
|