SHELL = /bin/sh

CFLAGS = -g -O4 -Wall

all:	icctrans wtpt

icctrans: icctrans.c xgetopt.c
	$(CC) $(CFLAGS) icctrans.c xgetopt.c ../src/liblcms.a -I../include -o icctrans -lm

wtpt: wtpt.c
	$(CC) $(CFLAGS) wtpt.c ../src/liblcms.a -I../include -o wtpt -lm

install:
	# Nothing to install
	
clean:
	-rm wtpt icctrans wtpt.exe icctrans.exe
