
MAKE	= make
XPM2ICON = /home/C/Tools/xpm2icon

ICONS	= folder_close.xpm folder_open.xpm texture.xpm

all:	icons

icons:
	set -e; for i in $(ICONS); do $(XPM2ICON) -i $$i -o ../$$i -mc "#104010401040" ; done


