aboutsummaryrefslogtreecommitdiff
path: root/util/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/Makefile')
-rw-r--r--util/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/util/Makefile b/util/Makefile
deleted file mode 100644
index 40e74b65..00000000
--- a/util/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-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
-
-# for MacOS
-# /usr/local/bin/g++-7 -msse2 -O3 -fopenmp -Bstatic -o psnr psnr.cc ssim.cc psnr_main.cc