mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-08 01:36:47 +08:00
BUG=339 TESTED=gyp build R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/16769004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1022 16f28f9a-4ce2-e073-06de-1de4eb20be90
7 lines
213 B
Makefile
7 lines
213 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
|