mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3f1ef2255a
Remove the android/ top dir Fixe the Makefile.am to be androgenized To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files. Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
36 lines
609 B
Makefile
36 lines
609 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 dataprotocol
|
|
|
|
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)) \
|
|
> $@
|