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

Side by Side Diff: third_party/qcms/src/tests/Makefile

Issue 1920253003: Revert of Reland: [qcms] Fix build_output_lut to return correct data for parametric curves (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 CC=gcc 1 CC=gcc
2 INCLUDE=-I../ 2 INCLUDE=-I../
3 WALL=-Wall 3 WALL=-Wall
4 CFLAGS=-O2 -msse2 $(WALL) -DSSE2_ENABLE 4 CFLAGS=-O2 -msse2 $(WALL) -DSSE2_ENABLE
5 LDFLAGS=-lm 5 LDFLAGS=-lm
6 6
7 QCMS=../transform.c ../transform-sse2.c ../transform_util.c ../matrix.c ../iccre ad.c ../chain.c ../qcms_util.c 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) 8 OBJS=$(QCMS:.c=.o)
9 9
10 all: qcms_tests 10 all: qcms_tests
11 11
12 qcms_tests: qcms_test_*.c $(OBJS) 12 qcms_tests: qcms_test_main.c qcms_test_munsell.c qcms_test_tetra_clut_rgba.c qcm s_test_internal_srgb.c qcms_test_ntsc_gamut.c $(OBJS)
13 $(CC) $(CFLAGS) $(INCLUDE) $^ -o $@ $(LDFLAGS) 13 $(CC) $(CFLAGS) $(INCLUDE) $^ -o $@ $(LDFLAGS)
14 14
15 clean: 15 clean:
16 rm -rf qcms_tests *.o $(OBJS) 16 rm -rf qcms_tests *.o $(OBJS)
OLDNEW
« 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