summaryrefslogtreecommitdiff
path: root/testbed/bad.icc
blob: ddfa62291f9b6730110b9c9f2e7fa4e81586d44e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SHELL = /bin/sh

CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include

testcms.o: testcms.c

testcms: testcms.o ../src/liblcms.a
	$(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm

all: testcms test

test: testcms
	./testcms

install:
	# Nothing to install
	
clean:
	-rm testcms.o testcms testcms.exe