libretro: fix bytes/pixels confusion
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
4132e8ca 4TARGET = pcsx
a80ae4a0 5CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
f89fa2d9 6LDLIBS += -lpthread
f95a77f7 7ifndef DEBUG
cfbd3c6e 8CFLAGS += -O2 -DNDEBUG
b60f2812 9endif
61bc6d40 10CXXFLAGS += $(CFLAGS)
4132e8ca 11#DRC_DBG = 1
12#PCNT = 1
80c2304e 13
38c2028e 14all: config.mak target_ plugins_
de38f20e 15
4132e8ca 16ifneq ($(wildcard config.mak),)
17config.mak: ./configure
18 @echo $@ is out-of-date, running configure
19 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20include config.mak
21else
22config.mak:
23 @echo "Please run ./configure before running make!"
24 @exit 1
25endif
26-include Makefile.local
80c2304e 27
61bc6d40 28CC_LINK = $(CC)
07c13dfd 29LDLIBS += $(MAIN_LDLIBS)
61bc6d40 30
80c2304e 31# core
32OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
3ebefe71 33 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
80c2304e 34 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
35 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
36 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
37 libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
59774ed0 38OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
39ifeq "$(ARCH)" "arm"
40OBJS += libpcsxcore/gte_arm.o
41endif
a80ae4a0 42ifeq "$(HAVE_NEON)" "1"
8cfbda97 43OBJS += libpcsxcore/gte_neon.o
44endif
ac6575cd 45libpcsxcore/gte.o libpcsxcore/gte_nf.o: CFLAGS += -fno-strict-aliasing
ab948f7e 46libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
47libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
48
f95a77f7 49# dynarec
4132e8ca 50ifeq "$(USE_DYNAREC)" "1"
7139f3c8 51OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
7e605697 52OBJS += libpcsxcore/new_dynarec/pcsxmem.o
7139f3c8 53endif
54OBJS += libpcsxcore/new_dynarec/emu_if.o
b1be1eee 55libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
56 libpcsxcore/new_dynarec/pcsxmem_inline.c
ab948f7e 57libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
3eb78778 58ifdef DRC_DBG
59libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
60CFLAGS += -DDRC_DBG
61endif
4132e8ca 62ifeq "$(DRC_CACHE_BASE)" "1"
63libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
a327ad27 64endif
f95a77f7 65
e906c010 66# spu
ee849648 67OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 68 plugins/dfsound/registers.o plugins/dfsound/spu.o \
69 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 70plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
71 plugins/dfsound/xa.c
3a721c1f 72ifeq "$(ARCH)" "arm"
b17618c0 73OBJS += plugins/dfsound/arm_utils.o
74endif
07c13dfd 75ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
76plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 77OBJS += plugins/dfsound/oss.o
78endif
07c13dfd 79ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
80plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 81OBJS += plugins/dfsound/alsa.o
4132e8ca 82LDLIBS += -lasound
83endif
07c13dfd 84ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
85plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 86OBJS += plugins/dfsound/sdl.o
87endif
07c13dfd 88ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
89plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
90OBJS += plugins/dfsound/pulseaudio.o
91endif
92ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
93plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 94endif
95
61bc6d40 96# builtin gpu
97OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
90ca4913 98ifeq "$(HAVE_NEON)" "1"
62d7fa95 99OBJS += plugins/gpulib/cspace_neon.o
61bc6d40 100else
101OBJS += plugins/gpulib/cspace.o
102endif
103ifeq "$(BUILTIN_GPU)" "neon"
90ca4913 104OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
105plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
106plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
61bc6d40 107endif
108ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 109# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 110plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
111plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
112OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 113endif
61bc6d40 114ifeq "$(BUILTIN_GPU)" "unai"
115OBJS += plugins/gpulib/cspace.o
116OBJS += plugins/gpu_unai/gpulib_if.o
117ifeq "$(ARCH)" "arm"
118OBJS += plugins/gpu_unai/gpu_arm.o
119endif
4ea086f6 120plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 121CC_LINK = $(CXX)
b60f2812 122endif
e0c692d9 123
47bf65ab 124# cdrcimg
47bf65ab 125OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 126
384f5f43 127# dfinput
4c08b9e7 128OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 129
80c2304e 130# gui
29a8c4f3 131OBJS += frontend/main.o frontend/plugin.o
38c2028e 132OBJS += frontend/common/readpng.o frontend/common/fonts.o
133OBJS += frontend/linux/plat.o
55b0eeea 134
4132e8ca 135ifeq "$(PLATFORM)" "generic"
7badc935 136OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o
38c2028e 137USE_FRONTEND = 1
4132e8ca 138endif
55b0eeea 139ifeq "$(PLATFORM)" "pandora"
55b0eeea 140OBJS += frontend/linux/fbdev.o
dd4d5a35 141OBJS += frontend/plat_omap.o frontend/linux/xenv.o
55b0eeea 142OBJS += frontend/plat_pandora.o
38c2028e 143USE_FRONTEND = 1
4132e8ca 144endif
55b0eeea 145ifeq "$(PLATFORM)" "caanoo"
faf2b2aa 146OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
221be40d 147OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
5b9f1b9e 148libpcsxcore/new_dynarec/pcsxmem.o: CFLAGS += -DCUSTOM_MEMMAPS
38c2028e 149USE_FRONTEND = 1
150endif
151ifeq "$(PLATFORM)" "maemo"
152OBJS += maemo/hildon.o maemo/main.o
153maemo/%.o: maemo/%.c
154OBJS += frontend/plugin_lib.o
155endif
156ifeq "$(PLATFORM)" "libretro"
157OBJS += frontend/libretro.o
158endif
159ifeq "$(USE_FRONTEND)" "1"
160OBJS += frontend/menu.o frontend/linux/in_evdev.o
161OBJS += frontend/common/input.o
162OBJS += frontend/plugin_lib.o
163ifeq "$(HAVE_TSLIB)" "1"
164frontend/%.o: CFLAGS += -DHAVE_TSLIB
165OBJS += frontend/pl_gun_ts.o
166endif
167else
168CFLAGS += -DNO_FRONTEND
55b0eeea 169endif
a80ae4a0 170
447783f8 171ifdef X11
172frontend/%.o: CFLAGS += -DX11
173OBJS += frontend/xkb.o
174endif
72228559 175ifdef PCNT
176CFLAGS += -DPCNT
177endif
ab948f7e 178frontend/%.o: CFLAGS += -DIN_EVDEV
38c2028e 179frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h
3c70c47b 180
59774ed0 181libpcsxcore/gte_nf.o: libpcsxcore/gte.c
182 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
183
3c70c47b 184frontend/revision.h: FORCE
185 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
186 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
187 @rm $@_
188.PHONY: FORCE
189
90ca4913 190%.o: %.S
191 $(CC) $(CFLAGS) -c $^ -o $@
80c2304e 192
38c2028e 193target_: $(TARGET)
194
80c2304e 195$(TARGET): $(OBJS)
61bc6d40 196 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
80c2304e 197
dd4d5a35 198clean: $(PLAT_CLEAN) clean_plugins
4132e8ca 199 $(RM) $(TARGET) $(OBJS) $(TARGET).map
0d464c77 200
4132e8ca 201ifneq ($(PLUGINS),)
dd4d5a35 202plugins_: $(PLUGINS)
203
ee78346e 204$(PLUGINS):
205 make -C $(dir $@)
f932e54b 206
ee78346e 207clean_plugins:
ea1f6f2f 208 make -C plugins/gpulib/ clean
ee78346e 209 for dir in $(PLUGINS) ; do \
210 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 211else
212plugins_:
213clean_plugins:
4132e8ca 214endif
80c2304e 215
303ee308 216# ----------- release -----------
217
4132e8ca 218VER ?= $(shell git describe master)
219
dd4d5a35 220ifeq "$(PLATFORM)" "generic"
221OUT = pcsx_rearmed_$(VER)
222
223rel: pcsx $(PLUGINS) \
224 frontend/pandora/skin readme.txt COPYING
225 rm -rf $(OUT)
226 mkdir -p $(OUT)/plugins
227 mkdir -p $(OUT)/bios
228 cp -r $^ $(OUT)/
229 mv $(OUT)/*.so* $(OUT)/plugins/
230 zip -9 -r $(OUT).zip $(OUT)
231endif
232
4132e8ca 233ifeq "$(PLATFORM)" "pandora"
303ee308 234PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
235
ee78346e 236rel: pcsx $(PLUGINS) \
9e0630ab 237 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
238 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 239 rm -rf out
bbd837c6 240 mkdir -p out/plugins
303ee308 241 cp -r $^ out/
3938f69a 242 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
243 rm out/pcsx.pxml.templ
bbd837c6 244 mv out/*.so out/plugins/
9e0630ab 245 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 246endif
247
248ifeq "$(PLATFORM)" "caanoo"
249PLAT_CLEAN = caanoo_clean
250
251caanoo_clean:
252 $(RM) frontend/320240/pollux_set
253
4132e8ca 254rel: pcsx $(PLUGINS) \
255 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
256 frontend/320240/pcsxb.png frontend/320240/skin \
257 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
258 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
259 frontend/320240/haptic_s.cfg \
260 readme.txt COPYING
261 rm -rf out
262 mkdir -p out/pcsx_rearmed/plugins
263 cp -r $^ out/pcsx_rearmed/
4132e8ca 264 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
265 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
266 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
267 mkdir out/pcsx_rearmed/lib/
268 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
269 mkdir out/pcsx_rearmed/bios/
270 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
271endif