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

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

Issue 1374953003: Expand QCMS tests. Add Munsell test for transform accuracy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed return error from -1 to EXIT_FAILURE Created 5 years, 2 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/qcms.gyp ('k') | third_party/qcms/src/tests/qcms_test_main.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
index b1de43c2a3bb3fdf79916847ffbae9842b0311ac..a7a5bb729c1ac5ca61794e9523d66509a0d26eda 100644
--- a/third_party/qcms/src/tests/Makefile
+++ b/third_party/qcms/src/tests/Makefile
@@ -4,13 +4,13 @@ WALL=-Wall
CFLAGS=-O2 -msse2 $(WALL) -DSSE2_ENABLE
LDFLAGS=-lm
-QCMS=../transform.c ../transform-sse2.c ../transform_util.c ../matrix.c ../chain.c
+QCMS=../transform.c ../transform-sse2.c ../transform_util.c ../matrix.c ../iccread.c ../chain.c
OBJS=$(QCMS:.c=.o)
-all: qcms_test
+all: qcms_tests
-qcms_test: qcms_test_tetra_clut_rgba.c $(OBJS)
- $(CC) $(CFLAGS) $(INCLUDE) $(OBJS) qcms_test_tetra_clut_rgba.c -o $@ $(LDFLAGS)
+qcms_tests: qcms_test_main.c qcms_test_munsell.c qcms_test_tetra_clut_rgba.c $(OBJS)
+ $(CC) $(CFLAGS) $(INCLUDE) $^ -o $@ $(LDFLAGS)
clean:
- rm -rf qcms_test *.o $(OBJS)
+ rm -rf qcms_tests *.o $(OBJS)
« no previous file with comments | « third_party/qcms/qcms.gyp ('k') | third_party/qcms/src/tests/qcms_test_main.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698