
# 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...
NAMEOUTPUT = CySpider
OBJ = src/Game.o src/Killer.o src/Main.o src/Spider.o src/Menu.o src/utilanimate.o src/utilsound.o

CC = vcc
RM = vrm
LIBS = highscore.o

all : $(NAMEOUTPUT).app

.SUFFIXES : .c

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

.c.o :
	 @$(CC) -c $< -o $@
    
clean :
	@echo cleaning...
	@$(RM) -f $(NAMEOUTPUT).app src/*.o tmp/*.* 

new : clean all
