1SHELL = /bin/sh
2
3CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include
4
5testcms.o: testcms.c
6
7testcms: testcms.o ../src/liblcms.a
8	$(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm
9
10all: testcms test
11
12test: testcms
13	./testcms
14
15install:
16	# Nothing to install
17
18clean:
19	-rm testcms.o testcms testcms.exe
20
21
22