mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
abb5f2cc2f
Summary: + flex-based lexing and manual simplistic parsing. Test Plan: Use that stuff to make awesome things, see if it breaks.
26 lines
1 KiB
Makefile
26 lines
1 KiB
Makefile
bin_PROGRAMS = ges-launch-@GST_API_VERSION@
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS) $(GST_VALIDATE_CFLAGS)
|
|
LDADD = $(top_builddir)/ges/libges-@GST_API_VERSION@.la $(GST_PBUTILS_LIBS) $(GST_LIBS) $(GIO_LIBS) $(GST_VALIDATE_LIBS)
|
|
|
|
noinst_HEADERS = ges-validate.h ges-structure-parser.h
|
|
|
|
ges_launch_@GST_API_VERSION@_SOURCES = ges-validate.c ges-launch.c ges-structure-parser.c
|
|
|
|
nodist_ges_launch_@GST_API_VERSION@_SOURCES = lex.priv_ges_parse_yy.c parse_lex.h
|
|
|
|
CLEANFILES = lex.priv_ges_parse_yy.c
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT ges_launch -:EXECUTABLE ges-launch \
|
|
-:TAGS eng \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(ges_launch_@GST_API_VERSION@_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(AM_CFLAGS) \
|
|
-:LDFLAGS -lges-@GST_API_VERSION@ $(GST_PBUTILS_LIBS) $(GST_LIBS) \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
> $@
|
|
|
|
lex.priv_ges_parse_yy.c parse_lex.h: parse.l
|
|
$(AM_V_GEN)$(FLEX_PATH) --header-file=parse_lex.h -Ppriv_ges_parse_yy $^
|