Do not use AttemptSemaphore() from RawPutChar(), since it may be called
[cake.git] / tools / ilbmtoicon / Makefile
blob4ecacdb0a444084a339461b4d657e7cb39dc4a12
1 # Copyright © 1995-2001, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Desc: Makefile for ilbmtoicon
7 -include $(TOP)/config/make.cfg
9 USER_CFLAGS := -Wall -Wunused -O2
11 HOST_CC ?= $(CC)
12 HOST_STRIP ?= strip
13 ILBMTOICON ?= ilbmtoicon
14 MECHO ?= echo
16 all : $(ILBMTOICON)
18 $(ILBMTOICON) : ilbmtoicon.c
19 @$(MECHO) "Compiling $(notdir $@)..."
20 @$(HOST_CC) $(HOST_CFLAGS) $< -o $@
21 @$(HOST_STRIP) $@
23 clean:
24 @$(RM) -f $(ILBMTOICON)