# use 'vmake' (not 'make'!) to run this script!

# set this to where Cybiko SDK actually resides
#CYBIKO_SDK = C:\Program Files\Cybiko Inc\Cybiko SDK

# you may also want to change this...
NAME = Game_Menu
OBJ = src/Game.o src/Menu.o

CC = "$(CYBIKO_SDK)"/bin/vcc
RM = "$(CYBIKO_SDK)"/bin/vrm
LIBS = highscore.o

all : $(NAME).app

.SUFFIXES : .c

$(NAME).app : $(OBJ)
    @echo linking...
    @$(CC) -R0 $(OBJ) $(LIBS) @res/filer.list -o $@

.c.o :
    @$(CC) -c $< -o $@

clean :
    @echo cleaning...
    @$(RM) -f src/*.o tmp/*.* 

new : clean all
