final src and Makefile adjustments for PSP release
authornotaz <notasas@gmail.com>
Sat, 17 Nov 2007 22:13:35 +0000 (22:13 +0000)
committernotaz <notasas@gmail.com>
Sat, 17 Nov 2007 22:13:35 +0000 (22:13 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@298 be3aeb3a-fb24-0410-a615-afba39da0efa

psp/Makefile
psp/emu.c
psp/main.c
psp/menu.c
psp/mp3.c
psp/psp.c
psp/psp.h

index d990ba6..d18c332 100644 (file)
@@ -11,8 +11,6 @@ amalgamate = 0
 CFLAGS += -I../.. -I. -DNO_SYNC\r
 CFLAGS += -Wall -Winline -G0\r
 #CFLAGS += -DLPRINTF_STDIO\r
-#CFLAGS += -fprofile-generate\r
-#CFLAGS += -fprofile-use\r
 #CFLAGS += -pg\r
 ifeq ($(DEBUG),)\r
 CFLAGS += -O2 -ftracer -fstrength-reduce -ffast-math\r
@@ -109,7 +107,11 @@ AS := psp-as
 \r
 ../../Pico/Memory.o : ../../Pico/Memory.c\r
        @echo ">>>" $<\r
-       $(CC) $(CFLAGS) -c $< -o $@ -D_ASM_MEMORY_C -D_ASM_MEMORY_C_AMIPS\r
+       $(CC) $(CFLAGS) -O2 -c $< -o $@ -D_ASM_MEMORY_C -D_ASM_MEMORY_C_AMIPS\r
+\r
+../../Pico/cd/Memory.o : ../../Pico/cd/Memory.c\r
+       @echo ">>>" $<\r
+       $(CC) $(CFLAGS) -O2 -c $< -o $@\r
 \r
 ../../Pico/Draw.o : ../../Pico/Draw.c\r
        @echo ">>>" $<\r
@@ -119,6 +121,10 @@ AS := psp-as
        @echo ">>>" $<\r
        $(CC) $(CFLAGS) -c $< -o $@ -D_ASM_MISC_C_AMIPS\r
 \r
+../../Pico/cd/gfx_cd.o : ../../Pico/cd/gfx_cd.c\r
+       @echo ">>>" $<\r
+       $(CC) $(CFLAGS) -O2 -c $< -o $@\r
+\r
 readme.txt: ../../tools/textfilter ../base_readme.txt\r
        ../../tools/textfilter ../base_readme.txt $@ PSP\r
 \r
@@ -142,6 +148,7 @@ up: EBOOT.PBP
 # cleanup\r
 \r
 myclean:\r
+       $(RM) PicoDrive.map\r
        make -C ../../cpu/musashi clean\r
 \r
 \r
@@ -158,5 +165,9 @@ endif
 \r
 # ?\r
 rel: EBOOT.PBP readme.txt\r
-       zip -9 -r ../../PicoDrive_$(VER).zip skin -i \*.png -i \*.txt\r
+       mkdir -p PicoDrive/skin/\r
+       cp $^ PicoDrive/\r
+       cp skin/* PicoDrive/skin/\r
+       zip -9 -r ../../PicoDrive_$(VER).zip PicoDrive\r
+       rm -rf PicoDrive\r
 \r
index 9fc890c..aaa5a0e 100644 (file)
--- a/psp/emu.c
+++ b/psp/emu.c
@@ -1,3 +1,8 @@
+// (c) Copyright 2007 notaz, All rights reserved.
+// Free for non-commercial use.
+
+// For commercial use, separate licencing terms must be obtained.
+
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/syslimits.h> // PATH_MAX
index ffbc761..bad56a9 100644 (file)
@@ -1,3 +1,8 @@
+// (c) Copyright 2007 notaz, All rights reserved.
+// Free for non-commercial use.
+
+// For commercial use, separate licencing terms must be obtained.
+
 #include <string.h>
 #include "psp.h"
 #include "emu.h"
index f8ba4d7..996f687 100644 (file)
@@ -1,4 +1,4 @@
-// (c) Copyright 2006,2007 notaz, All rights reserved.
+// (c) Copyright 2007 notaz, All rights reserved.
 // Free for non-commercial use.
 
 // For commercial use, separate licencing terms must be obtained.
index 5991063..ce12788 100644 (file)
--- a/psp/mp3.c
+++ b/psp/mp3.c
@@ -1,3 +1,8 @@
+// (c) Copyright 2007 notaz, All rights reserved.
+// Free for non-commercial use.
+
+// For commercial use, separate licencing terms must be obtained.
+
 #include <stdio.h>
 #include <string.h>
 
index b7c8693..99b9084 100644 (file)
--- a/psp/psp.c
+++ b/psp/psp.c
@@ -1,3 +1,8 @@
+// (c) Copyright 2007 notaz, All rights reserved.
+// Free for non-commercial use.
+
+// For commercial use, separate licencing terms must be obtained.
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdarg.h>
index 7f2d70d..d4a3d0e 100644 (file)
--- a/psp/psp.h
+++ b/psp/psp.h
@@ -1,3 +1,8 @@
+// (c) Copyright 2007 notaz, All rights reserved.
+// Free for non-commercial use.
+
+// For commercial use, separate licencing terms must be obtained.
+
 #include <pspctrl.h>
 
 void psp_init(void);