mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
1cb19d1146
Because audio-enumtypes.h needs to be available for gstrtpbaseaudiopayload.c https://bugzilla.gnome.org/show_bug.cgi?id=761949
39 lines
510 B
Makefile
39 lines
510 B
Makefile
SUBDIRS = \
|
|
tag \
|
|
fft \
|
|
audio \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
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
|
|
|
|
sdp: rtp
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
tag audio fft video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|