spu: add asm mixing code for ARMv5 too
[pcsx_rearmed.git] / Makefile
1 #CROSS_COMPILE=
2 AS  = $(CROSS_COMPILE)as
3 GCC = $(CROSS_COMPILE)gcc
4 CC  = $(CROSS_COMPILE)gcc
5 LD  = $(CROSS_COMPILE)ld
6 ifdef CC_OVERRIDE
7 CC = $(CC_OVERRIDE)
8 endif
9
10 ARM926 ?= 0
11 ARM_CORTEXA8 ?= 1
12 PLATFORM ?= pandora
13 USE_OSS ?= 1
14 #USE_ALSA = 1
15 #DRC_DBG = 1
16 #PCNT = 1
17 TARGET = pcsx
18
19 -include Makefile.local
20
21 ARCH = $(shell $(GCC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
22
23 CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
24 LDFLAGS += -lz -lpthread -ldl -lpng
25 ifndef DEBUG
26 CFLAGS += -O2 -DNDEBUG
27 endif
28 CFLAGS += $(EXTRA_CFLAGS)
29
30 ifeq "$(ARCH)" "arm"
31 ifeq "$(ARM_CORTEXA8)" "1"
32 GCC_CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
33 ASFLAGS += -mcpu=cortex-a8 -mfpu=neon
34 endif
35 ifeq "$(ARM926)" "1"
36 GCC_CFLAGS += -mcpu=arm926ej-s -mtune=arm926ej-s
37 ASFLAGS += -mcpu=arm926ej-s
38 endif
39 endif
40 CFLAGS += $(GCC_CFLAGS)
41
42 # detect armv7 and NEON from the specified CPU
43 HAVE_NEON = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_NEON__ 1' && echo 1)
44 HAVE_ARMV7 = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_ARCH_7A__ 1' && echo 1)
45
46 all: $(TARGET)
47
48 # core
49 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
50         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
51         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
52         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
53         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
54         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
55 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
56 ifeq "$(ARCH)" "arm"
57 OBJS += libpcsxcore/gte_arm.o
58 endif
59 ifeq "$(HAVE_NEON)" "1"
60 OBJS += libpcsxcore/gte_neon.o
61 endif
62 libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
63 libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
64
65 # dynarec
66 ifndef NO_NEW_DRC
67 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
68 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
69 endif
70 OBJS += libpcsxcore/new_dynarec/emu_if.o
71 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
72         libpcsxcore/new_dynarec/pcsxmem_inline.c
73 libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
74 ifdef DRC_DBG
75 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
76 CFLAGS += -DDRC_DBG
77 endif
78
79 # spu
80 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
81         plugins/dfsound/registers.o plugins/dfsound/spu.o
82 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
83         plugins/dfsound/xa.c
84 ifeq "$(ARCH)" "arm"
85 OBJS += plugins/dfsound/arm_utils.o
86 endif
87 ifeq "$(USE_OSS)" "1"
88 plugins/dfsound/%.o: CFLAGS += -DUSEOSS
89 OBJS += plugins/dfsound/oss.o
90 endif
91 ifeq "$(USE_ALSA)" "1"
92 plugins/dfsound/%.o: CFLAGS += -DUSEALSA
93 OBJS += plugins/dfsound/alsa.o
94 LDFLAGS += -lasound
95 endif
96
97 # gpu
98 # note: code is not safe for strict-aliasing? (Castlevania problems)
99 plugins/dfxvideo/%.o: CFLAGS += -fno-strict-aliasing
100 OBJS += plugins/dfxvideo/gpu.o
101 plugins/dfxvideo/gpu.o: plugins/dfxvideo/fps.c plugins/dfxvideo/prim.c \
102         plugins/dfxvideo/gpu.c plugins/dfxvideo/soft.c
103 ifdef X11
104 LDFLAGS += -lX11 -lXv
105 OBJS += plugins/dfxvideo/draw.o
106 else
107 OBJS += plugins/dfxvideo/draw_fb.o
108 endif
109
110 # cdrcimg
111 OBJS += plugins/cdrcimg/cdrcimg.o
112
113 # dfinput
114 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
115
116 # gui
117 OBJS += frontend/main.o frontend/plugin.o
118 OBJS += frontend/plugin_lib.o frontend/common/readpng.o
119 OBJS += frontend/common/fonts.o frontend/linux/plat.o
120 ifeq "$(USE_GTK)" "1"
121 OBJS += maemo/hildon.o maemo/main.o
122 maemo/%.o: maemo/%.c
123 else
124 OBJS += frontend/menu.o frontend/linux/in_evdev.o
125 OBJS += frontend/common/input.o frontend/linux/oshide.o
126
127 ifeq "$(PLATFORM)" "pandora"
128 frontend/%.o: CFLAGS += -DVOUT_FBDEV
129 OBJS += frontend/linux/fbdev.o
130 OBJS += frontend/plat_omap.o
131 OBJS += frontend/plat_pandora.o
132 else
133 ifeq "$(PLATFORM)" "caanoo"
134 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
135 OBJS += frontend/warm/warm.o
136 else
137 OBJS += frontend/plat_dummy.o
138 endif
139 endif
140
141 endif # !USE_GTK
142
143 ifeq "$(HAVE_NEON)" "1"
144 OBJS += frontend/cspace_neon.o
145 else
146 OBJS += frontend/cspace.o
147 endif
148 ifdef X11
149 frontend/%.o: CFLAGS += -DX11
150 OBJS += frontend/xkb.o
151 endif
152 ifdef PCNT
153 CFLAGS += -DPCNT
154 endif
155 ifndef NO_TSLIB
156 frontend/%.o: CFLAGS += -DHAVE_TSLIB
157 OBJS += frontend/pl_gun_ts.o
158 endif
159 %.o: ASFLAGS += --defsym HAVE_ARMV7=$(HAVE_ARMV7)
160 frontend/%.o: CFLAGS += -DIN_EVDEV
161 frontend/menu.o: frontend/revision.h
162
163 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
164         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
165
166 frontend/revision.h: FORCE
167         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
168         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
169         @rm $@_
170 .PHONY: FORCE
171
172
173 $(TARGET): $(OBJS)
174         $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map
175
176 PLUGINS ?= plugins/spunull/spunull.so plugins/gpu_unai/gpuPCSX4ALL.so \
177         plugins/gpu-gles/gpuGLES.so plugins/gpu_neon/gpu_neon.so
178
179 $(PLUGINS):
180         make -C $(dir $@)
181
182 clean:
183         $(RM) $(TARGET) $(OBJS) $(TARGET).map
184
185 clean_plugins:
186         for dir in $(PLUGINS) ; do \
187                 $(MAKE) -C $$(dirname $$dir) clean; done
188
189 # ----------- release -----------
190
191 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
192
193 VER ?= $(shell git describe master)
194
195 rel: pcsx $(PLUGINS) \
196                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
197                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
198         rm -rf out
199         mkdir -p out/plugins
200         cp -r $^ out/
201         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
202         rm out/pcsx.pxml.templ
203         mv out/*.so out/plugins/
204         mv out/plugins/gpu_neon.so out/plugins/gpuPEOPS2.so
205         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c