# KallistiOS ##version##
#
# utils/isotest/Makefile
# (c)2000 Megan Potter
#

all: isotest

isotest: isotest.c
	gcc -g -o isotest isotest.c

clean:
	-rm -f isotest

