mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +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
18 lines
465 B
Makefile
18 lines
465 B
Makefile
SUBDIRS = sched eos nego muxing
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_PROG =
|
|
else
|
|
GST_LOADSAVE_PROG = caps registry autoplug props tee autoplug2 capsconnect \
|
|
padfactory autoplug4
|
|
endif
|
|
|
|
noinst_PROGRAMS = $(GST_LOADSAVE_PROG) init loadall simplefake states queue \
|
|
paranoia rip mp3encode case4 markup load autoplug3 \
|
|
incsched reaping threadlock mp1vid reconnect \
|
|
faketest events timecache
|
|
|
|
LDADD = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
|
|
EXTRA_DIST = README
|