mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
181845ec1b
The dependency setup does not seem to work for all systems, causing the build to fail with: gstrtpbaseaudiopayload.c:65:0: fatal error: gst/audio/audio-enumtypes.h: No such file or directory My setup: gcc (Ubuntu 4.8.4-2ubuntu1~14.04) 4.8.4 autoconf (GNU Autoconf) 2.69 automake (GNU automake) 1.14.1 libtool (GNU libtool) 2.4.2 https://bugzilla.gnome.org/show_bug.cgi?id=754344
37 lines
504 B
Makefile
37 lines
504 B
Makefile
SUBDIRS = \
|
|
tag \
|
|
fft \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
audio \
|
|
rtp \
|
|
pbutils \
|
|
riff \
|
|
app \
|
|
allocators
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-app.h gst-i18n-plugin.h glib-compat-private.h
|
|
|
|
# dependencies:
|
|
audio: tag
|
|
|
|
riff: tag audio
|
|
|
|
rtsp: sdp
|
|
|
|
pbutils: video audio
|
|
|
|
rtp: audio
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
tag audio fft sdp video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|