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