mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
9a3e4ce5cb
Made private and moved to gdp plugin in -base for the time being, until we figure out what we do with gdp and 0.11.
36 lines
596 B
Makefile
36 lines
596 B
Makefile
if HAVE_CHECK
|
|
SUBDIRS_CHECK = check
|
|
else
|
|
SUBDIRS_CHECK =
|
|
endif
|
|
|
|
if GST_DISABLE_NET
|
|
SUBDIRS_NET =
|
|
else
|
|
if HAVE_SYS_SOCKET_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
if HAVE_WINSOCK2_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
SUBDIRS_NET =
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
if GST_DISABLE_REGISTRY
|
|
SUBDIRS_HELPERS =
|
|
else
|
|
SUBDIRS_HELPERS = helpers
|
|
endif
|
|
|
|
SUBDIRS_ALWAYS = base controller
|
|
|
|
SUBDIRS = $(SUBDIRS_ALWAYS) $(SUBDIRS_CHECK) $(SUBDIRS_NET) $(SUBDIRS_HELPERS)
|
|
DIST_SUBDIRS = $(SUBDIRS_ALWAYS) check net helpers
|
|
|
|
Android.mk: Makefile.am
|
|
echo $(PWD)
|
|
androgenizer -:PROJECT gstreamer \
|
|
-:SUBDIR $(patsubst %, libs/gst/%, $(SUBDIRS)) \
|
|
> $@
|