You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
310 B
22 lines
310 B
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
|
|
|
|
|