# devkitadv base dir
export CCBASE=c:/devkitadv
# User options passed to the compiler
export CUSER=-DLITTLE_ENDIAN -DGP32
include $(CCBASE)/gp32.mk
#------------------------------

all: gptest.gxb

gptest.gxb: gptest.elf
gptest.elf: gpmain.o
	$(LINK)

gpmain.o: gpmain.c

clean:
	rm -f gptest.gxb gptest.elf gpmain.o

