FAME + some random stuff added
[picodrive.git] / platform / psp / Makefile
1 \r
2 # pspdev is expected to be in path\r
3 PSPSDK = $(shell psp-config --pspsdk-path)\r
4 \r
5 # settings\r
6 #use_musashi = 1\r
7 use_mz80 = 1\r
8 amalgamate = 0\r
9 #profile = 1\r
10 #up = 1\r
11 \r
12 \r
13 CFLAGS += -I../.. -I. -D_UNZIP_SUPPORT -DNO_SYNC # -DBENCHMARK\r
14 CFLAGS += -Wall -Winline\r
15 ifeq ($(DEBUG),)\r
16 CFLAGS += -O2 -G0 -ftracer -fstrength-reduce -ffast-math\r
17 else\r
18 CFLAGS += -ggdb\r
19 endif\r
20 ifeq "$(profile)" "1"\r
21 CFLAGS += -fprofile-generate\r
22 endif\r
23 ifeq "$(profile)" "2"\r
24 CFLAGS += -fprofile-use\r
25 endif\r
26 \r
27 \r
28 # frontend\r
29 OBJS += main.o emu.o mp3.o menu.o psp.o\r
30 \r
31 # common\r
32 OBJS += ../common/emu.o ../common/menu.o ../common/fonts.o ../common/readpng.o\r
33 \r
34 # Pico\r
35 ifeq "$(amalgamate)" "1"\r
36 OBJS += ../../PicoAll.o\r
37 else\r
38 OBJS += ../../Pico/Area.o ../../Pico/Cart.o ../../Pico/Memory.o ../../Pico/Misc.o \\r
39                 ../../Pico/Pico.o ../../Pico/Sek.o ../../Pico/VideoPort.o ../../Pico/Draw2.o ../../Pico/Draw.o \\r
40                 ../../Pico/Patch.o ../../Pico/Draw_amips.o\r
41 # Pico - CD\r
42 OBJS += ../../Pico/cd/Pico.o ../../Pico/cd/Memory.o ../../Pico/cd/Sek.o ../../Pico/cd/LC89510.o \\r
43                 ../../Pico/cd/cd_sys.o ../../Pico/cd/cd_file.o ../../Pico/cd/gfx_cd.o \\r
44                 ../../Pico/cd/Area.o ../../Pico/cd/Misc.o ../../Pico/cd/pcm.o ../../Pico/cd/buffering.o\r
45 endif\r
46 \r
47 # Pico - sound\r
48 ifneq "$(amalgamate)" "1"\r
49 OBJS += ../../Pico/sound/sound.o\r
50 endif\r
51 OBJS += ../../Pico/sound/mix.o\r
52 OBJS += ../../Pico/sound/sn76496.o ../../Pico/sound/ym2612.o\r
53 # zlib (hacked)\r
54 OBJS += ../../zlib/gzio.o ../../zlib/inffast.o ../../zlib/inflate.o ../../zlib/inftrees.o ../../zlib/trees.o \\r
55         ../../zlib/deflate.o ../../zlib/crc32.o ../../zlib/adler32.o ../../zlib/zutil.o ../../zlib/compress.o\r
56 # unzip\r
57 OBJS += ../../unzip/unzip.o ../../unzip/unzip_stream.o\r
58 # CPU cores\r
59 ifeq "$(use_musashi)" "1"\r
60 CFLAGS += -DEMU_M68K\r
61 OBJS += ../../cpu/musashi/m68kops.o ../../cpu/musashi/m68kcpu.o\r
62 else\r
63 CFLAGS += -DEMU_F68K\r
64 OBJS += ../../cpu/fame/famec.o\r
65 endif\r
66 # z80\r
67 ifeq "$(use_mz80)" "1"\r
68 CFLAGS += -D_USE_MZ80\r
69 OBJS += ../../cpu/mz80/mz80.o\r
70 else\r
71 $(error nothing here!)\r
72 endif\r
73 \r
74 \r
75 LIBS += -lpng -lm -lpspgu -lpsppower -Wl,-Map=PicoDrive.map # -lpspaudio -lpsphprm\r
76 \r
77 # target\r
78 TARGET = PicoDrive\r
79 EXTRA_TARGETS = EBOOT.PBP\r
80 PSP_EBOOT_TITLE = PICODRIVE\r
81 #PSP_EBOOT_ICON = .png\r
82 #PSP_EBOOT_PIC1 = .png\r
83 \r
84 CUSTOM_CLEAN = myclean\r
85 \r
86 include $(PSPSDK)/lib/build.mak\r
87 \r
88 # some additional rules\r
89 .c.o:\r
90         @echo ">>>" $<\r
91         $(CC) $(CFLAGS) -c $< -o $@\r
92 \r
93 AS := psp-as\r
94 \r
95 .s.o:\r
96         @echo ">>>" $<\r
97         $(AS) -march=allegrex -mtune=allegrex $< -o $@\r
98 \r
99 ../../cpu/musashi/m68kops.c :\r
100         make -C ../../cpu/musashi\r
101 \r
102 readme.txt: ../../tools/textfilter ../base_readme.txt\r
103         ../../tools/textfilter ../base_readme.txt $@ PSP\r
104 \r
105 ../../tools/textfilter: ../../tools/textfilter.c\r
106         make -C ../../tools/ textfilter\r
107 \r
108 ../../cpu/fame/famec.o : ../../cpu/fame/famec.c\r
109         @echo ">>>" $<\r
110         $(CC) $(CFLAGS) -Wno-unused -c $< -o $@\r
111 \r
112 # ?\r
113 up: EBOOT.PBP\r
114         @cp -v $^ /media/disk/PSP/GAME/PicoDrive/\r
115 \r
116 \r
117 # cleanup\r
118 \r
119 myclean:\r
120         make -C ../../cpu/musashi clean\r
121 \r
122 \r
123 clean_prof:\r
124         find ../.. -name '*.gcno' -delete\r
125         find ../.. -name '*.gcda' -delete\r
126 \r
127 # ----------- release -----------\r
128 ifneq ($(findstring rel,$(MAKECMDGOALS)),)\r
129 ifeq ($(VER),)\r
130 $(error need VER)\r
131 endif\r
132 endif\r
133 \r
134 # ?\r
135 rel: EBOOT.PBP readme.txt\r
136         zip -9 -j ../../PicoDrive_$(VER).zip $^\r
137 #       zip -9 -r ../../PicoDrive_$(VER).zip skin -i \*.png -i \*.txt\r
138 \r