gstreamer/gst-libs/gst/Makefile.am
Benjamin Gaignard ceecdb8e1d allocators: Add dmabuf-based GstMemory and GstAllocator
Create new GstMemory and GstAllocator base on dmabuf.
Memory is not allocated/freed by userland but mapped/unmmaped
from a dmabuf file descriptor when requested.

This allocator is included in a new lib called libgstallocators

https://bugzilla.gnome.org/show_bug.cgi?id=693826
2013-02-19 10:05:38 +01:00

36 lines
481 B
Makefile

SUBDIRS = \
tag \
fft \
rtp \
sdp \
rtsp \
video \
audio \
pbutils \
riff \
app \
allocators
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