alsa.audio: limit the supported frequencies to common set
[AROS.git] / workbench / libs / lcms2 / testbed / bad.icc
blobddfa62291f9b6730110b9c9f2e7fa4e81586d44e
1 SHELL = /bin/sh
3 CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include
5 testcms.o: testcms.c
7 testcms: testcms.o ../src/liblcms.a
8         $(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm
10 all: testcms test
12 test: testcms
13         ./testcms
15 install:
16         # Nothing to install
17         
18 clean:
19         -rm testcms.o testcms testcms.exe
21