2001-08-21 20:16:48 +00:00
|
|
|
if GST_DISABLE_REGISTRY
|
|
|
|
GST_REGISTRY_SRC =
|
|
|
|
else
|
|
|
|
GST_REGISTRY_SRC = gstreamer-register
|
|
|
|
endif
|
|
|
|
|
2001-10-17 10:21:27 +00:00
|
|
|
if GST_DISABLE_LOADSAVE
|
|
|
|
GST_LOADSAVE_SRC =
|
|
|
|
else
|
|
|
|
GST_LOADSAVE_SRC = gstreamer-compprep
|
|
|
|
endif
|
|
|
|
|
2001-08-21 20:16:48 +00:00
|
|
|
bin_PROGRAMS = gstreamer-launch \
|
|
|
|
$(GST_REGISTRY_SRC) \
|
|
|
|
gstreamer-inspect \
|
2001-10-17 10:21:27 +00:00
|
|
|
$(GST_LOADSAVE_SRC) \
|
2001-08-21 20:16:48 +00:00
|
|
|
gstreamer-complete
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2001-06-03 19:49:51 +00:00
|
|
|
man_MANS = gstreamer-launch.1 gstreamer-register.1 gstreamer-inspect.1 \
|
2002-01-03 10:49:09 +00:00
|
|
|
gstreamer-complete.1 gstreamer-compprep.1
|
2001-12-16 14:23:19 +00:00
|
|
|
|
2001-12-19 19:23:51 +00:00
|
|
|
gstreamer_launch_LDADD = $(GST_LIBS) #-lefence
|
2001-12-16 14:23:19 +00:00
|
|
|
gstreamer_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
|
|
|
|
if !GST_DISABLE_REGISTRY
|
|
|
|
gstreamer_register_LDADD = $(GST_LIBS)
|
|
|
|
gstreamer_register_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
endif
|
|
|
|
|
|
|
|
gstreamer_inspect_LDADD = $(GST_LIBS)
|
|
|
|
gstreamer_inspect_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
|
|
|
|
gstreamer_complete_LDADD = $(GST_LIBS)
|
|
|
|
gstreamer_complete_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
|
|
|
|
if !GST_DISABLE_LOADSAVE
|
|
|
|
gstreamer_compprep_LDADD = $(GST_LIBS)
|
|
|
|
gstreamer_compprep_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
endif
|
2001-03-16 01:06:50 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = $(man_MANS)
|