mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
e8e87fe956
Original commit message from CVS: * removed gstreamer.m4 (packages should use pkg.m4) * guilaunch depends only on gtk, not libglade-gnome * removed an unnecessary check in dynamic-pipeline.c * attempted to avoid a spurious autoheader run * gtk2 fixes * killed a lot of files that automake brings in for us * killed acinclude.m4, it's autogenerated
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
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
|
|
if HAVE_GTK
|
|
GST_GUI_LAUNCH = gstreamer-guilaunch
|
|
else !HAVE_GTK
|
|
GST_GUI_LAUNCH =
|
|
endif !HAVE_GTK
|
|
else !USE_GLIB2
|
|
GST_GUI_LAUNCH = gstreamer-guilaunch
|
|
endif !USE_GLIB2
|
|
|
|
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
|
|
|
|
gstreamer_launch_LDADD = $(GST_LIBS) #-lefence
|
|
gstreamer_launch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
|
|
if USE_GLIB2
|
|
gstreamer_guilaunch_LDADD = $(GTK_LIBS) $(GST_LIBS)
|
|
gstreamer_guilaunch_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS)
|
|
else
|
|
gstreamer_guilaunch_LDADD = $(GST_LIBS)
|
|
gstreamer_guilaunch_CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\"
|
|
endif
|
|
|
|
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
|
|
|
|
EXTRA_DIST = $(man_MANS)
|