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

Side by Side 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, 6 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 CC=gcc
2 INCLUDE=-I../
3 WALL=-Wall
4 CFLAGS=-O2 -msse2 $(WALL) -DSSE2_ENABLE
5 LDFLAGS=-lm
6
7 QCMS=../transform.c ../transform-sse2.c ../transform_util.c ../matrix.c ../iccre ad.c ../chain.c ../qcms_util.c
8 OBJS=$(QCMS:.c=.o)
9
10 all: qcms_tests
11
12 qcms_tests: qcms_test_*.c $(OBJS)
13 $(CC) $(CFLAGS) $(INCLUDE) $^ -o $@ $(LDFLAGS)
14
15 clean:
16 rm -rf qcms_tests *.o $(OBJS)
OLDNEW
« 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