From 30a96ede5b59c18f9f0cd2b289ea48115b7f51c6 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 21 Mar 2013 01:06:33 +0000 Subject: [PATCH] Makefile for psnr tool BUG=204 TESTED=make Review URL: https://webrtc-codereview.appspot.com/1215007 git-svn-id: http://libyuv.googlecode.com/svn/trunk@613 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- util/Makefile | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 util/Makefile diff --git a/README.chromium b/README.chromium index e3e82bd9f..00be757d2 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 611 +Version: 613 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 9c12b157a..4a393b103 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 611 +#define LIBYUV_VERSION 613 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/util/Makefile b/util/Makefile new file mode 100644 index 000000000..2cedf37ea --- /dev/null +++ b/util/Makefile @@ -0,0 +1,2 @@ +psnr: psnr.cc ssim.cc psnr_main.cc + $(CXX) -msse2 -O3 -fopenmp -o psnr psnr.cc ssim.cc psnr_main.cc