mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
17fd7ebcb4
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
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstnsf.la
|
|
|
|
NOSEFART_SOURCES=fmopl.c \
|
|
log.c \
|
|
mmc5_snd.c \
|
|
nes_apu.c \
|
|
vrc7_snd.c \
|
|
fds_snd.c \
|
|
nes6502.c \
|
|
nsf.c \
|
|
vrcvisnd.c
|
|
|
|
NOSEFART_INCLUDES=fmopl.h \
|
|
log.h \
|
|
mmc5_snd.h \
|
|
dis6502.h \
|
|
nes_apu.h \
|
|
osd.h \
|
|
vrc7_snd.h \
|
|
fds_snd.h \
|
|
nes6502.h \
|
|
nsf.h \
|
|
types.h \
|
|
vrcvisnd.h
|
|
|
|
libgstnsf_la_SOURCES = gstnsf.c $(NOSEFART_SOURCES)
|
|
|
|
libgstnsf_la_CFLAGS = $(GST_CFLAGS) -DNSF_PLAYER
|
|
libgstnsf_la_LIBADD = $(GST_LIBS) $(LIBM)
|
|
libgstnsf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstnsf_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstnsf.h $(NOSEFART_INCLUDES)
|
|
|
|
EXTRA_DIST =
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstnsf -:SHARED libgstnsf \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstnsf_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstnsf_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstnsf_la_LDFLAGS) \
|
|
$(libgstnsf_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|