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