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
This commit is contained in:
fbarchard@google.com 2013-03-21 01:06:33 +00:00
parent e424a9de7a
commit 30a96ede5b
3 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 611
Version: 613
License: BSD
License File: LICENSE

View File

@ -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

2
util/Makefile Normal file
View File

@ -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