Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Unified Diff: third_party/qcms/src/tests/Makefile

Issue 2014023003: Add exact version of qcms used by Chrome for testing and comparison (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/qcms/src/qcmstypes.h ('k') | third_party/qcms/src/tests/qcms_test_internal_srgb.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/qcms/src/tests/Makefile
diff --git a/third_party/qcms/src/tests/Makefile b/third_party/qcms/src/tests/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..4adb7e217f1d2dc6394d034fbdfd5bf3f4f18fbe
--- /dev/null
+++ b/third_party/qcms/src/tests/Makefile
@@ -0,0 +1,16 @@
+CC=gcc
+INCLUDE=-I../
+WALL=-Wall
+CFLAGS=-O2 -msse2 $(WALL) -DSSE2_ENABLE
+LDFLAGS=-lm
+
+QCMS=../transform.c ../transform-sse2.c ../transform_util.c ../matrix.c ../iccread.c ../chain.c ../qcms_util.c
+OBJS=$(QCMS:.c=.o)
+
+all: qcms_tests
+
+qcms_tests: qcms_test_*.c $(OBJS)
+ $(CC) $(CFLAGS) $(INCLUDE) $^ -o $@ $(LDFLAGS)
+
+clean:
+ rm -rf qcms_tests *.o $(OBJS)
« no previous file with comments | « third_party/qcms/src/qcmstypes.h ('k') | third_party/qcms/src/tests/qcms_test_internal_srgb.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698