docs updated, gfx_cd works(?)

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@74 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-03-22 19:22:55 +00:00
parent a403080104
commit 01bc6b1993
7 changed files with 94 additions and 107 deletions

View file

@ -63,10 +63,11 @@ clean: tidy
tidy:
@$(RM) $(OBJS)
@make -C ../../cpu/mz80/ clean
@make -C ../gp2x/helix/ X86=1 clean
PicoDrive : $(OBJS)
PicoDrive : $(OBJS) ../gp2x/helix/helix_mp3_x86.a
@echo $@
@$(GCC) $(COPT) $(OBJS) ../gp2x/helix/helix_mp3_x86.a $(LDFLAGS) -lm -Wl,-Map=PicoDrive.map -o $@
@$(GCC) $(COPT) $^ $(LDFLAGS) -lm -Wl,-Map=PicoDrive.map -o $@
../../cpu/mz80/mz80.o : ../../cpu/mz80/mz80.asm
@ -76,6 +77,9 @@ PicoDrive : $(OBJS)
../../cpu/mz80/mz80.asm :
@make -C ../../cpu/mz80/
../gp2x/helix/helix_mp3_x86.a:
@make -C ../gp2x/helix/ X86=1 clean all
.c.o:
@echo $<
@$(GCC) $(COPT) $(DEFINC) -c $< -o $@