gstreamer/ext/Makefile.am
Víctor Manuel Jáquez Leal 89e41fc8e3 build: use git.mk
This patch handles dinamically the gitignore files with git.mk[1].

Removed the automake variable MAINTAINERCLANFILES in most of the
Makefile.am files since now it is handled by the top one.

1. https://github.com/behdad/git.mk/blob/master/git.mk

https://bugzilla.gnome.org/show_bug.cgi?id=749321
2015-05-18 16:14:46 +02:00

59 lines
1.2 KiB
Makefile

SUBDIRS = libvpx
EXTRA_DIST =
codecparsers_srcdir = \
$(top_srcdir)/ext/codecparsers/gst-libs/gst/codecparsers
codecparsers_source_c = \
dboolhuff.c \
gsth264parser.c \
gstjpegparser.c \
gstmpeg4parser.c \
gstmpegvideoparser.c \
gstvc1parser.c \
gstvp8parser.c \
gstvp8rangedecoder.c \
nalutils.c \
parserutils.c \
vp8utils.c \
gsth265parser.c \
$(NULL)
EXTRA_DIST += $(codecparsers_source_c:%.c=$(codecparsers_srcdir)/%.c)
codecparsers_source_h = \
dboolhuff.h \
gsth264parser.h \
gstjpegparser.h \
gstmpeg4parser.h \
gstmpegvideoparser.h \
gstvc1parser.h \
gstvp8parser.h \
gstvp8rangedecoder.h \
nalutils.h \
parserutils.h \
vp8utils.h \
gsth265parser.h \
$(NULL)
EXTRA_DIST += $(codecparsers_source_h:%.h=$(codecparsers_srcdir)/%.h)
videoparsers_srcdir = \
$(top_srcdir)/ext/codecparsers/gst/videoparsers
videoparsers_source_c = \
gsth264parse.c \
gsth265parse.c \
$(NULL)
EXTRA_DIST += $(videoparsers_source_c:%.c=$(videoparsers_srcdir)/%.c)
videoparsers_source_h = \
gsth264parse.h \
gsth265parse.h \
$(NULL)
EXTRA_DIST += $(videoparsers_source_h:%.h=$(videoparsers_srcdir)/%.h)
-include $(top_srcdir)/git.mk