mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
69b18ab09d
The navigation interface is now in the video library.
34 lines
467 B
Makefile
34 lines
467 B
Makefile
SUBDIRS = \
|
|
tag \
|
|
fft \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
audio \
|
|
pbutils \
|
|
riff \
|
|
app
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-plugin.h glib-compat-private.h
|
|
|
|
# dependencies:
|
|
audio: tag
|
|
|
|
riff: tag audio
|
|
|
|
rtsp: sdp
|
|
|
|
pbutils: video audio
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
tag audio fft rtp sdp video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|