File: bad.icc

package info (click to toggle)
lcms2 2.6-3%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 11,552 kB
  • ctags: 5,421
  • sloc: ansic: 34,976; sh: 10,956; pascal: 1,958; makefile: 121; cpp: 84
file content (21 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (15)
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