mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
754b22d7ee
There's no code whatsoever that uses these macros. If anyone ever feels the need to resurrect them, we should add them to gstutils.h in core or libgstaudio or so.
43 lines
750 B
Makefile
43 lines
750 B
Makefile
# The interfaces directory has to be built before the others,
|
|
# otherwise some generated header files will be missing for the
|
|
# plugins in the other directories.
|
|
# Also, the tag directory has to be built before the cdda directory.
|
|
SUBDIRS = \
|
|
interfaces \
|
|
tag \
|
|
cdda \
|
|
fft \
|
|
netbuffer \
|
|
rtp \
|
|
sdp \
|
|
rtsp \
|
|
video \
|
|
audio \
|
|
pbutils \
|
|
riff \
|
|
app
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-plugin.h
|
|
|
|
# dependencies:
|
|
audio: interfaces
|
|
|
|
cdda: tag
|
|
|
|
riff: tag audio
|
|
|
|
rtsp: sdp
|
|
|
|
pbutils: video audio
|
|
|
|
INDEPENDENT_SUBDIRS = \
|
|
interfaces tag audio fft netbuffer rtp sdp video app
|
|
|
|
.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS)
|
|
|
|
independent-subdirs: $(INDEPENDENT_SUBDIRS)
|
|
|
|
$(INDEPENDENT_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
all-recursive: independent-subdirs
|