repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
alsa.audio: limit the supported frequencies to common set
[AROS.git]
/
workbench
/
libs
/
lcms2
/
testbed
/
bad.icc
blob
ddfa62291f9b6730110b9c9f2e7fa4e81586d44e
1
SHELL = /bin/sh
2
3
CFLAGS = -g -O4 -fomit-frame-pointer -Wall -I../include
4
5
testcms.o: testcms.c
6
7
testcms: testcms.o ../src/liblcms.a
8
$(CC) $(CFLAGS) testcms.o ../src/liblcms.a -o $@ -lm
9
10
all: testcms test
11
12
test: testcms
13
./testcms
14
15
install:
16
# Nothing to install
17
18
clean:
19
-rm testcms.o testcms testcms.exe
20
21