summaryrefslogtreecommitdiff
path: root/Makefile
blob: 042761e67d393d6305e3f20552bd184fb65b2f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#COVERAGE_FLAGS=-fprofile-arcs -ftest-coverage 
#COVERAGE_FLAGS=
OPT_FLAGS=-O0
OPT_FLAGS=
CFLAGS=-Wall $(OPT_FLAGS) $(COVERAGE_FLAGS) -Wdeclaration-after-statement -ggdb `pkg-config --cflags lcms`
LDFLAGS=`pkg-config --libs lcms` -ldl

QCMS_SRC=iccread.c transform.c transform-sse2.c transform-sse1.c
QCMS_OBJS=iccread.o transform.o transform-sse2.o transform-sse1.o

PROGRAMS=profile-gen test test-invalid lcms-compare dump-profile div-test coverage malloc-fail invalid-coverage

all: $(PROGRAMS)

$(PROGRAMS): $(QCMS_OBJS)

clean:
	rm -f $(PROGRAMS) $(QCMS_OBJS)