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

ICONS	=	box.xpm \
		cone.xpm \
		cylinder.xpm \
		draw_flag.xpm \
		draw_sub_flag.xpm \
		lightsource.xpm \
		object.xpm \
		plane.xpm \
		show_tree.xpm \
		sphere.xpm \
		torus.xpm \
		triangle.xpm \
		triarray.xpm \
		tribox.xpm \
		world.xpm \
		object_reference.xpm \
		reference_object.xpm


all:	icons

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


