psp port runs, bad colors
[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
6use_musashi = 1\r
7use_mz80 = 1\r
8amalgamate = 0\r
9#profile = 1\r
10#up = 1\r
11\r
12\r
13CFLAGS += -I../.. -I. -D_UNZIP_SUPPORT -DNO_SYNC # -DBENCHMARK\r
14CFLAGS += -Wall -Winline\r
15ifeq ($(DEBUG),)\r
16CFLAGS += -O2 -G0 -ftracer -fstrength-reduce -fomit-frame-pointer -fstrict-aliasing -ffast-math\r
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
40 ../../Pico/Patch.o\r
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
55 ../../zlib/deflate.o ../../zlib/crc32.o ../../zlib/adler32.o ../../zlib/zutil.o ../../zlib/compress.o\r
56# unzip\r
57OBJS += ../../unzip/unzip.o ../../unzip/unzip_stream.o\r
58# CPU cores\r
59ifeq "$(use_musashi)" "1"\r
60CFLAGS += -DEMU_M68K\r
61OBJS += ../../cpu/musashi/m68kops.o ../../cpu/musashi/m68kcpu.o\r
62endif\r
63# z80\r
64ifeq "$(use_mz80)" "1"\r
65CFLAGS += -D_USE_MZ80\r
66OBJS += ../../cpu/mz80/mz80.o\r
67else\r
68$(error nothing here!)\r
69endif\r
70\r
71\r
72LIBS += -lpng -lm -lpspgu # -lpspaudio -lpspgu -lpsppower -lpsphprm -lz -lm -lstdc++\r
73\r
74# target\r
75TARGET = PicoDrive\r
76EXTRA_TARGETS = EBOOT.PBP\r
77PSP_EBOOT_TITLE = PICODRIVE\r
78#PSP_EBOOT_ICON = .png\r
79#PSP_EBOOT_PIC1 = .png\r
80\r
81CUSTOM_CLEAN = myclean\r
82\r
83include $(PSPSDK)/lib/build.mak\r
84\r
85\r
86# some additional rules\r
87.c.o:\r
88 @echo ">>>" $<\r
89 $(CC) $(CFLAGS) -c $< -o $@\r
90\r
91../../cpu/musashi/m68kops.c :\r
92 make -C ../../cpu/musashi\r
93\r
94readme.txt: ../../tools/textfilter ../base_readme.txt\r
95 ../../tools/textfilter ../base_readme.txt $@ PSP\r
96\r
97../../tools/textfilter: ../../tools/textfilter.c\r
98 make -C ../../tools/ textfilter\r
99\r
100\r
101# ?\r
102up: EBOOT.PBP\r
103 @cp -v $^ /media/disk/PSP/GAME/PicoDrive/\r
104\r
105\r
106# cleanup\r
107\r
108myclean:\r
109 make -C ../../cpu/musashi clean\r
110\r
111\r
112clean_prof:\r
113 find ../.. -name '*.gcno' -delete\r
114 find ../.. -name '*.gcda' -delete\r
115\r
116# ----------- release -----------\r
117ifneq ($(findstring rel,$(MAKECMDGOALS)),)\r
118ifeq ($(VER),)\r
119$(error need VER)\r
120endif\r
121endif\r
122\r
123# ?\r
124rel: EBOOT.PBP readme.txt\r
125 zip -9 -j ../../PicoDrive_$(VER).zip $^\r
126# zip -9 -r ../../PicoDrive_$(VER).zip skin -i \*.png -i \*.txt\r
127\r