Added type conversion to red, green and blue components, otherwise
[AROS.git] / tools / ilbmtoc / Makefile
blobbf2137b819071725f51a4ecaf66a021c4225bccf
1 # Copyright © 1995-2001, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Desc: Makefile for ilbmtoc
7 -include $(TOP)/config/make.cfg
9 USER_CFLAGS := -Wall -Wunused -O2
11 HOST_CC ?= $(CC)
12 HOST_STRIP ?= strip
13 ILBMTOC ?= ilbmtoc
14 MECHO ?= echo
16 all : $(ILBMTOC)
18 $(ILBMTOC) : ilbmtoc.c
19 @$(MECHO) "Compiling $(notdir $@)..."
20 @$(HOST_CC) $(HOST_CFLAGS) $(USER_CFLAGS) $< -o $@
21 @$(HOST_STRIP) $@
23 clean:
24 @$(RM) -f $(ILBMTOC)