mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
6364e8ec2c
Along with a whole bunch of Makefile fixups
98 lines
3 KiB
Makefile
98 lines
3 KiB
Makefile
built_header_make = gesmarshal.h
|
|
built_source_make = gesmarshal.c
|
|
|
|
lib_LTLIBRARIES = libges-@GST_MAJORMINOR@.la
|
|
|
|
EXTRA_libges_@GST_MAJORMINOR@_la_SOURCES = gesmarshal.list
|
|
|
|
CLEANFILES = $(BUILT_SOURCES) $(built_header_make) $(built_source_make)
|
|
|
|
libges_@GST_MAJORMINOR@_la_SOURCES = \
|
|
$(built_source_make) \
|
|
ges.c \
|
|
ges-enums.c \
|
|
ges-custom-timeline-source.c \
|
|
ges-simple-timeline-layer.c \
|
|
ges-timeline.c \
|
|
ges-timeline-layer.c \
|
|
ges-timeline-object.c \
|
|
ges-timeline-pipeline.c \
|
|
ges-timeline-source.c \
|
|
ges-timeline-file-source.c \
|
|
ges-timeline-transition.c \
|
|
ges-timeline-test-source.c \
|
|
ges-timeline-title-source.c \
|
|
ges-timeline-overlay.c \
|
|
ges-timeline-text-overlay.c \
|
|
ges-track.c \
|
|
ges-track-object.c \
|
|
ges-track-source.c \
|
|
ges-track-operation.c \
|
|
ges-track-filesource.c \
|
|
ges-track-image-source.c \
|
|
ges-track-transition.c \
|
|
ges-track-audio-transition.c \
|
|
ges-track-video-transition.c \
|
|
ges-track-video-test-source.c \
|
|
ges-track-audio-test-source.c \
|
|
ges-track-title-source.c \
|
|
ges-track-text-overlay.c \
|
|
ges-screenshot.c \
|
|
ges-utils.c
|
|
|
|
libges_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/ges/
|
|
libges_@GST_MAJORMINOR@include_HEADERS = \
|
|
$(built_header_make) \
|
|
ges-types.h \
|
|
ges.h \
|
|
ges-enums.h \
|
|
ges-custom-timeline-source.h \
|
|
ges-internal.h \
|
|
ges-simple-timeline-layer.h \
|
|
ges-timeline.h \
|
|
ges-timeline-layer.h \
|
|
ges-timeline-object.h \
|
|
ges-timeline-pipeline.h \
|
|
ges-timeline-source.h \
|
|
ges-timeline-file-source.h \
|
|
ges-timeline-transition.h \
|
|
ges-timeline-test-source.h \
|
|
ges-timeline-title-source.h \
|
|
ges-timeline-overlay.h \
|
|
ges-timeline-text-overlay.h \
|
|
ges-track.h \
|
|
ges-track-object.h \
|
|
ges-track-source.h \
|
|
ges-track-operation.h \
|
|
ges-track-filesource.h \
|
|
ges-track-image-source.h \
|
|
ges-track-transition.h \
|
|
ges-track-audio-transition.h \
|
|
ges-track-video-transition.h \
|
|
ges-track-video-test-source.h \
|
|
ges-track-audio-test-source.h \
|
|
ges-track-title-source.h \
|
|
ges-track-text-overlay.h \
|
|
ges-screenshot.h \
|
|
ges-utils.h
|
|
|
|
libges_@GST_MAJORMINOR@_la_CFLAGS = -I$(top_srcdir) $(GST_PROFILE_CFLAGS) $(GST_PBUTILS_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libges_@GST_MAJORMINOR@_la_LIBADD = $(GST_PROFILE_LIBS) $(GST_PBUTILS_LIBS) $(GST_CONTROLLER_LIBS) $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libges_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|
|
DISTCLEANFILE = $(CLEANFILES)
|
|
|
|
#files built on make all/check/instal
|
|
BUILT_SOURCES = \
|
|
$(built_header_make) \
|
|
$(built_source_make)
|
|
|
|
gesmarshal.h: gesmarshal.list
|
|
glib-genmarshal --header --prefix=ges_marshal $^ > gesmarshal.h.tmp
|
|
mv gesmarshal.h.tmp gesmarshal.h
|
|
|
|
gesmarshal.c: gesmarshal.list
|
|
echo "#include \"glib-object.h\"" >gesmarshal.c.tmp
|
|
echo "#include \"gesmarshal.h\"" >> gesmarshal.c.tmp
|
|
glib-genmarshal --body --prefix=ges_marshal $^ >> gesmarshal.c.tmp
|
|
mv gesmarshal.c.tmp gesmarshal.c
|