Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(973)

Side by Side Diff: third_party/libva/debian.upstream/Makefile.am

Issue 10375035: Add libva to chromium third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 DEBIANFILES = \
2 README.Debian \
3 changelog.in \
4 compat \
5 control.in \
6 copyright \
7 libva-dev.dirs \
8 libva-dev.install \
9 libva1.dirs \
10 libva1.install \
11 rules \
12 vainfo.install \
13 $(NULL)
14
15 DEBIANGENFILES = \
16 changelog \
17 control \
18 $(NULL)
19
20 EXTRA_DIST = $(DEBIANFILES)
21
22 dist_noinst_DATA = $(DEBIANGENFILES)
23
24 # Extra clean files so that maintainer-clean removes *everything*
25 MAINTAINERCLEANFILES = Makefile.in $(DEBIANGENFILES)
26
27 $(DEBIANGENFILES): %: %.in Makefile
28 -sed \
29 -e 's|\@DATE\@|'"`LC_ALL=C date +'%a, %d %b %Y %X %z'`"'|' \
30 -e 's|\@LIBDRM_VERSION\@|$(LIBDRM_VERSION)|' \
31 -e 's|\@LIBVA_PACKAGE_VERSION\@|$(LIBVA_PACKAGE_VERSION)|' \
32 -e 's|\@PACKAGE_VERSION\@|$(PACKAGE_VERSION)|' \
33 $< > $@
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698