psx_gpu: 2x sprite fixes and integration
[pcsx_rearmed.git] / Makefile
1 # Makefile for PCSX ReARMed
2
3 # default stuff goes here, so that config can override
4 TARGET = pcsx
5 CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
6 LDLIBS += -lpthread
7 ifndef DEBUG
8 CFLAGS += -O2 -DNDEBUG
9 endif
10 CXXFLAGS += $(CFLAGS)
11 #DRC_DBG = 1
12 #PCNT = 1
13
14 all: config.mak target_ plugins_
15
16 ifneq ($(wildcard config.mak),)
17 config.mak: ./configure
18         @echo $@ is out-of-date, running configure
19         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20 include config.mak
21 else
22 config.mak:
23         @echo "Please run ./configure before running make!"
24         @exit 1
25 endif
26 -include Makefile.local
27
28 CC_LINK = $(CC)
29 LDLIBS += $(MAIN_LDLIBS)
30
31 # core
32 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
33         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
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
38 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
39 ifeq "$(ARCH)" "arm"
40 OBJS += libpcsxcore/gte_arm.o
41 endif
42 ifeq "$(HAVE_NEON)" "1"
43 OBJS += libpcsxcore/gte_neon.o
44 endif
45 libpcsxcore/gte.o libpcsxcore/gte_nf.o: CFLAGS += -fno-strict-aliasing
46 libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
47 libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
48
49 # dynarec
50 ifeq "$(USE_DYNAREC)" "1"
51 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
52 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
53 endif
54 OBJS += libpcsxcore/new_dynarec/emu_if.o
55 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
56         libpcsxcore/new_dynarec/pcsxmem_inline.c
57 libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
58 ifdef DRC_DBG
59 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
60 CFLAGS += -DDRC_DBG
61 endif
62 ifeq "$(DRC_CACHE_BASE)" "1"
63 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
64 endif
65
66 # spu
67 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
68         plugins/dfsound/registers.o plugins/dfsound/spu.o \
69         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
70 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
71         plugins/dfsound/xa.c
72 ifeq "$(ARCH)" "arm"
73 OBJS += plugins/dfsound/arm_utils.o
74 endif
75 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
76 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
77 OBJS += plugins/dfsound/oss.o
78 endif
79 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
80 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
81 OBJS += plugins/dfsound/alsa.o
82 LDLIBS += -lasound
83 endif
84 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
85 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
86 OBJS += plugins/dfsound/sdl.o
87 endif
88 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
89 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
90 OBJS += plugins/dfsound/pulseaudio.o
91 endif
92 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
93 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
94 endif
95
96 # builtin gpu
97 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
98 ifeq "$(HAVE_NEON)" "1"
99 OBJS += plugins/gpulib/cspace_neon.o
100 else
101 OBJS += plugins/gpulib/cspace.o
102 endif
103 ifeq "$(BUILTIN_GPU)" "neon"
104 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
105 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
106 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
107 endif
108 ifeq "$(BUILTIN_GPU)" "peops"
109 # note: code is not safe for strict-aliasing? (Castlevania problems)
110 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
111 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
112 OBJS += plugins/dfxvideo/gpulib_if.o
113 endif
114 ifeq "$(BUILTIN_GPU)" "unai"
115 OBJS += plugins/gpulib/cspace.o
116 OBJS += plugins/gpu_unai/gpulib_if.o
117 ifeq "$(ARCH)" "arm"
118 OBJS += plugins/gpu_unai/gpu_arm.o
119 endif
120 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
121 CC_LINK = $(CXX)
122 endif
123
124 # cdrcimg
125 OBJS += plugins/cdrcimg/cdrcimg.o
126
127 # dfinput
128 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
129
130 # gui
131 OBJS += frontend/main.o frontend/plugin.o
132 OBJS += frontend/common/readpng.o frontend/common/fonts.o
133 OBJS += frontend/linux/plat.o
134
135 ifeq "$(PLATFORM)" "generic"
136 OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o
137 USE_FRONTEND = 1
138 endif
139 ifeq "$(PLATFORM)" "pandora"
140 OBJS += frontend/linux/fbdev.o
141 OBJS += frontend/plat_omap.o frontend/linux/xenv.o
142 OBJS += frontend/plat_pandora.o
143 USE_FRONTEND = 1
144 endif
145 ifeq "$(PLATFORM)" "caanoo"
146 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
147 OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
148 libpcsxcore/new_dynarec/pcsxmem.o: CFLAGS += -DCUSTOM_MEMMAPS
149 USE_FRONTEND = 1
150 endif
151 ifeq "$(PLATFORM)" "maemo"
152 OBJS += maemo/hildon.o maemo/main.o
153 maemo/%.o: maemo/%.c
154 OBJS += frontend/plugin_lib.o
155 endif
156 ifeq "$(PLATFORM)" "libretro"
157 OBJS += frontend/libretro.o
158 endif
159 ifeq "$(USE_FRONTEND)" "1"
160 OBJS += frontend/menu.o frontend/linux/in_evdev.o
161 OBJS += frontend/common/input.o
162 OBJS += frontend/plugin_lib.o
163 ifeq "$(HAVE_TSLIB)" "1"
164 frontend/%.o: CFLAGS += -DHAVE_TSLIB
165 OBJS += frontend/pl_gun_ts.o
166 endif
167 else
168 CFLAGS += -DNO_FRONTEND
169 endif
170
171 ifdef X11
172 frontend/%.o: CFLAGS += -DX11
173 OBJS += frontend/xkb.o
174 endif
175 ifdef PCNT
176 CFLAGS += -DPCNT
177 endif
178 frontend/%.o: CFLAGS += -DIN_EVDEV
179 frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h
180
181 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
182         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
183
184 frontend/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
190 %.o: %.S
191         $(CC) $(CFLAGS) -c $^ -o $@
192
193 target_: $(TARGET)
194
195 $(TARGET): $(OBJS)
196         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
197
198 clean: $(PLAT_CLEAN) clean_plugins
199         $(RM) $(TARGET) $(OBJS) $(TARGET).map
200
201 ifneq ($(PLUGINS),)
202 plugins_: $(PLUGINS)
203
204 $(PLUGINS):
205         make -C $(dir $@)
206
207 clean_plugins:
208         make -C plugins/gpulib/ clean
209         for dir in $(PLUGINS) ; do \
210                 $(MAKE) -C $$(dirname $$dir) clean; done
211 else
212 plugins_:
213 clean_plugins:
214 endif
215
216 # ----------- release -----------
217
218 VER ?= $(shell git describe HEAD)
219
220 ifeq "$(PLATFORM)" "generic"
221 OUT = pcsx_rearmed_$(VER)
222
223 rel: 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)
231 endif
232
233 ifeq "$(PLATFORM)" "pandora"
234 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
235
236 rel: pcsx $(PLUGINS) \
237                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
238                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
239         rm -rf out
240         mkdir -p out/plugins
241         cp -r $^ out/
242         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
243         rm out/pcsx.pxml.templ
244         mv out/*.so out/plugins/
245         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
246 endif
247
248 ifeq "$(PLATFORM)" "caanoo"
249 PLAT_CLEAN = caanoo_clean
250
251 caanoo_clean:
252         $(RM) frontend/320240/pollux_set
253
254 rel: 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/
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 *
271 endif