mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-12 06:29:57 +08:00
BUG=none TEST=libyuvTest.BenchmakDjb2_Test Review URL: https://webrtc-codereview.appspot.com/1446004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@689 16f28f9a-4ce2-e073-06de-1de4eb20be90
7 lines
219 B
Makefile
7 lines
219 B
Makefile
psnr: psnr.cc ssim.cc psnr_main.cc
|
|
ifeq ($(CXX),icl)
|
|
$(CXX) /arch:SSE2 /Ox /openmp psnr.cc ssim.cc psnr_main.cc
|
|
else
|
|
$(CXX) -msse2 -O3 -fopenmp -static -o psnr psnr.cc ssim.cc psnr_main.cc -Wl,--strip-all
|
|
endif
|