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