mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 20:31:36 +00:00
d4d144032c
Original commit message from CVS: - use GST_CFLAGS only - use AM_CFLAGS instead of CFLAGS so user cflags are not overwritten - use LDADD instead of LIBS (by analogy for <program>_LDADD, look for example in tools/Makefile.am) - kill me if it is wrong
10 lines
189 B
Makefile
10 lines
189 B
Makefile
if GST_DISABLE_LOADSAVE
|
|
noinst_PROGRAMS =
|
|
else
|
|
noinst_PROGRAMS = runxml dynamic-pipeline
|
|
endif
|
|
|
|
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
|
|
|
LDADD = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|