#
OWNER=bin
GROUP=bin
CTAGS= ctags -x >tags
CFLAGS= -O
LDFLAGS= -s -O
CC=../../../armcc/bin/arm-agb-elf-gcc.exe
AS=../../../armcc/bin/arm-agb-elf-as.exe -EL -mthumb-interwork --gstabs
ASC=exec ../../../armcc/asmconv.sh
LD=../../../armcc/bin/arm-agb-elf-ld.exe
OC=../../../armcc/bin/arm-agb-elf-objcopy.exe
GET=
SRCS=
ASMS=
OBJS=
SHAR=shar
MANDIR=/usr/man/manl/printenv.l
BINDIR=/usr/local/bin
DEPEND= makedepend $(CFLAGS)

all:    test

# To get things out of the revision ntrol system
$(SRCS): $(GET) $@
	 $(CC) $(CFLAGS) -c $*.c

test: $(OBJS)
	$(ASC) qsort.s >temp/qsort.s
	$(AS)  temp/qsort.s -o qsort.o
	$(ASC) fast_div.s >temp/fast_div.s
	$(AS)  temp/fast_div.s -o fast_div.o
	$(ASC) fast_root.s >temp/fast_root.s
	$(AS)  temp/fast_root.s -o fast_root.o
	$(ASC) sin.s >temp/sin.s
	$(AS)  temp/sin.s -o sin.o


