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

Side by Side Diff: third_party/libusb/src/Makefile.am

Issue 19713005: Update libusb 1.0.9 to libusbx 1.0.16 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
1 AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip 1 AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
2 ACLOCAL_AMFLAGS = -I m4 2 ACLOCAL_AMFLAGS = -I m4
3 DISTCLEANFILES = libusb-1.0.pc 3 DISTCLEANFILES = libusb-1.0.pc
4 MAINTAINERCLEANFILES = ChangeLog 4 EXTRA_DIST = TODO PORTING msvc libusb/libusb-1.0.def libusb/version_nano.h \
5 EXTRA_DIST = TODO PORTING msvc 5 examples/getopt/getopt.c examples/getopt/getopt1.c examples/getopt/getopt.h
6 SUBDIRS = libusb doc 6 SUBDIRS = libusb doc
7 7
8 if BUILD_EXAMPLES 8 if BUILD_EXAMPLES
9 SUBDIRS += examples 9 SUBDIRS += examples
10 endif 10 endif
11 11
12 if BUILD_TESTS
13 SUBDIRS += tests
14 endif
15
12 pkgconfigdir=$(libdir)/pkgconfig 16 pkgconfigdir=$(libdir)/pkgconfig
13 pkgconfig_DATA=libusb-1.0.pc 17 pkgconfig_DATA=libusb-1.0.pc
14 18
15 .PHONY: ChangeLog dist-up 19 .PHONY: dist-up
16 ChangeLog:
17 » git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
18
19 dist-hook: ChangeLog
20 20
21 reldir = .release/$(distdir) 21 reldir = .release/$(distdir)
22 dist-up: dist 22 dist-up: dist
23 rm -rf $(reldir) 23 rm -rf $(reldir)
24 mkdir -p $(reldir) 24 mkdir -p $(reldir)
25 cp $(distdir).tar.bz2 $(reldir) 25 cp $(distdir).tar.bz2 $(reldir)
26 rsync -rv $(reldir) frs.sourceforge.net:/home/frs/project/l/li/libusb/li busb-1.0/ 26 rsync -rv $(reldir) frs.sourceforge.net:/home/frs/project/l/li/libusb/li busb-1.0/
27 rm -rf $(reldir) 27 rm -rf $(reldir)
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698