mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
83e9f5a5a0
Original commit message from CVS: * gst-libs/ext/Makefile.am: We need to use $(MAKE) here instead of 'make' (on some systems it's gmake that needs to be called, for example)
15 lines
462 B
Makefile
15 lines
462 B
Makefile
# we have to put in a little hack here for integration to work well
|
|
# ffmpeg can't be in SUBDIRS, because then automake will try to descend in it
|
|
# and find conditionals it doesn't know.
|
|
|
|
# so,
|
|
# - don't put it in SUBDIRS so automake doesn't descend
|
|
# - put it in DIST_SUBDIRS so make dist picks up the subtree
|
|
# - add an all-local hook so it does get built
|
|
# this also satisfies make distcheck
|
|
|
|
SUBDIRS =
|
|
DIST_SUBDIRS = ffmpeg
|
|
|
|
all-local:
|
|
cd ffmpeg && $(MAKE)
|