# Makefile for rbo/runCtrl/cpp/img
# Satofumi KAMIMURA
# $Id$

# Target
TARGET = \
	crd_position.png \
	new_position.png \
	crd_update_detect.png \
	move_stop.png \
	move_followLine.png \
	move_followCircle.png \
	move_followCircleOnTangent.png \
	move_stopToLine.png \
	move_rotateToDirection.png \
	move_rotateAngle.png \
	move_spin.png \
	judge_lengthToGrid.png \
	judge_lengthToLine.png \
	judge_angleToDirection.png \
	judge_straightVelDiff.png \
	judge_rotateVelDiff.png \
	follow_curve.png \
	abst_crd.png \

all : $(TARGET)

clean :
	$(RM) $(TARGET)

.PHONY : all clean
######################################################################
.SUFFIXES : .png .obj

%.png: %.obj
	tgif -print -color -png $<
