psx_gpu: change fill handling again
[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 += -lpthread -ldl -lpng -lz -lm
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 -mfloat-abi=softfp
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 OBJS += plugins/gpu_neon/gpu.o
99 ifeq "$(HAVE_NEON)" "1"
100 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
101 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
102 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
103 else
104 # note: code is not safe for strict-aliasing? (Castlevania problems)
105 plugins/gpu_neon/peops_if.o: CFLAGS += -fno-strict-aliasing
106 plugins/gpu_neon/peops_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
107 OBJS += plugins/gpu_neon/peops_if.o
108 endif
109 ifdef X11
110 LDFLAGS += -lX11 `sdl-config --libs`
111 OBJS += plugins/gpu_neon/vout_sdl.o
112 plugins/gpu_neon/vout_sdl.o: CFLAGS += `sdl-config --cflags`
113 else
114 OBJS += plugins/gpu_neon/vout_fb.o
115 endif
116
117 # cdrcimg
118 OBJS += plugins/cdrcimg/cdrcimg.o
119
120 # dfinput
121 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
122
123 # gui
124 OBJS += frontend/main.o frontend/plugin.o
125 OBJS += frontend/plugin_lib.o frontend/common/readpng.o
126 OBJS += frontend/common/fonts.o frontend/linux/plat.o
127 ifeq "$(USE_GTK)" "1"
128 OBJS += maemo/hildon.o maemo/main.o
129 maemo/%.o: maemo/%.c
130 else
131 OBJS += frontend/menu.o frontend/linux/in_evdev.o
132 OBJS += frontend/common/input.o frontend/linux/oshide.o
133
134 ifeq "$(PLATFORM)" "pandora"
135 frontend/%.o: CFLAGS += -DVOUT_FBDEV
136 OBJS += frontend/linux/fbdev.o
137 OBJS += frontend/plat_omap.o
138 OBJS += frontend/plat_pandora.o
139 else
140 ifeq "$(PLATFORM)" "caanoo"
141 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
142 OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
143 else
144 OBJS += frontend/plat_dummy.o
145 endif
146 endif
147
148 endif # !USE_GTK
149
150 ifeq "$(HAVE_NEON)" "1"
151 OBJS += frontend/cspace_neon.o
152 else
153 OBJS += frontend/cspace.o
154 endif
155 ifdef X11
156 frontend/%.o: CFLAGS += -DX11
157 OBJS += frontend/xkb.o
158 endif
159 ifdef PCNT
160 CFLAGS += -DPCNT
161 endif
162 ifndef NO_TSLIB
163 frontend/%.o: CFLAGS += -DHAVE_TSLIB
164 OBJS += frontend/pl_gun_ts.o
165 endif
166 %.o: ASFLAGS += --defsym HAVE_ARMV7=$(HAVE_ARMV7)
167 frontend/%.o: CFLAGS += -DIN_EVDEV
168 frontend/menu.o: frontend/revision.h
169
170 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
171         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
172
173 frontend/revision.h: FORCE
174         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
175         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
176         @rm $@_
177 .PHONY: FORCE
178
179 %.o: %.S
180         $(CC) $(CFLAGS) -c $^ -o $@
181
182 $(TARGET): $(OBJS)
183         $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map
184
185 PLUGINS ?= plugins/spunull/spunull.so plugins/gpu-gles/gpuGLES.so \
186         plugins/gpu_neon/gpu_unai.so plugins/gpu_neon/gpu_peops.so
187
188 $(PLUGINS):
189         make -C $(dir $@)
190
191 clean: $(PLAT_CLEAN)
192         $(RM) $(TARGET) $(OBJS) $(TARGET).map
193
194 clean_plugins:
195         for dir in $(PLUGINS) ; do \
196                 $(MAKE) -C $$(dirname $$dir) clean; done
197
198 # ----------- release -----------
199
200 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
201
202 VER ?= $(shell git describe master)
203
204 rel: pcsx $(PLUGINS) \
205                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
206                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
207         rm -rf out
208         mkdir -p out/plugins
209         cp -r $^ out/
210         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
211         rm out/pcsx.pxml.templ
212         mv out/*.so out/plugins/
213         mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
214         mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
215         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c