frontend: generic: preliminary SDL support
[pcsx_rearmed.git] / Makefile
... / ...
CommitLineData
1# Makefile for PCSX ReARMed
2
3TARGET = pcsx
4
5# default CFLAGS go here, so that config can override them
6CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
7LDLIBS += -lpthread -ldl -lpng -lz -lm
8ifndef DEBUG
9CFLAGS += -O2 -DNDEBUG
10endif
11#DRC_DBG = 1
12#PCNT = 1
13
14all: config.mak $(TARGET)
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
28# core
29OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
30 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
31 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
32 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
33 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
34 libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
35OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
36ifeq "$(ARCH)" "arm"
37OBJS += libpcsxcore/gte_arm.o
38endif
39ifeq "$(HAVE_NEON)" "1"
40OBJS += libpcsxcore/gte_neon.o
41endif
42libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
43libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
44
45# dynarec
46ifeq "$(USE_DYNAREC)" "1"
47OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
48OBJS += libpcsxcore/new_dynarec/pcsxmem.o
49endif
50OBJS += libpcsxcore/new_dynarec/emu_if.o
51libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
52 libpcsxcore/new_dynarec/pcsxmem_inline.c
53libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
54ifdef DRC_DBG
55libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
56CFLAGS += -DDRC_DBG
57endif
58ifeq "$(DRC_CACHE_BASE)" "1"
59libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
60endif
61
62# spu
63OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
64 plugins/dfsound/registers.o plugins/dfsound/spu.o
65plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
66 plugins/dfsound/xa.c
67ifeq "$(ARCH)" "arm"
68OBJS += plugins/dfsound/arm_utils.o
69endif
70ifeq "$(USE_OSS)" "1"
71plugins/dfsound/%.o: CFLAGS += -DUSEOSS
72OBJS += plugins/dfsound/oss.o
73endif
74ifeq "$(USE_ALSA)" "1"
75plugins/dfsound/%.o: CFLAGS += -DUSEALSA
76OBJS += plugins/dfsound/alsa.o
77LDLIBS += -lasound
78endif
79ifeq "$(USE_NO_SOUND)" "1"
80OBJS += plugins/dfsound/nullsnd.o
81endif
82
83# gpu
84OBJS += plugins/gpulib/gpu.o
85ifeq "$(HAVE_NEON)" "1"
86OBJS += plugins/gpulib/cspace_neon.o
87OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
88plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
89plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
90else
91OBJS += plugins/gpulib/cspace.o
92# note: code is not safe for strict-aliasing? (Castlevania problems)
93plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
94plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
95OBJS += plugins/dfxvideo/gpulib_if.o
96endif
97ifdef X11
98LDLIBS += -lX11 `sdl-config --libs`
99OBJS += plugins/gpulib/vout_sdl.o
100plugins/gpulib/vout_sdl.o: CFLAGS += `sdl-config --cflags`
101else
102OBJS += plugins/gpulib/vout_pl.o
103endif
104
105# cdrcimg
106OBJS += plugins/cdrcimg/cdrcimg.o
107
108# dfinput
109OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
110
111# gui
112OBJS += frontend/main.o frontend/plugin.o
113OBJS += frontend/plugin_lib.o frontend/common/readpng.o
114OBJS += frontend/common/fonts.o frontend/linux/plat.o
115ifeq "$(PLATFORM)" "maemo"
116OBJS += maemo/hildon.o maemo/main.o
117maemo/%.o: maemo/%.c
118else
119OBJS += frontend/menu.o frontend/linux/in_evdev.o
120OBJS += frontend/common/input.o frontend/linux/xenv.o
121
122ifeq "$(PLATFORM)" "generic"
123OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o
124endif
125ifeq "$(PLATFORM)" "pandora"
126OBJS += frontend/linux/fbdev.o
127OBJS += frontend/plat_omap.o
128OBJS += frontend/plat_pandora.o
129endif
130ifeq "$(PLATFORM)" "caanoo"
131OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
132OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
133endif
134endif # !maemo
135
136ifdef X11
137frontend/%.o: CFLAGS += -DX11
138OBJS += frontend/xkb.o
139endif
140ifdef PCNT
141CFLAGS += -DPCNT
142endif
143ifeq "$(HAVE_TSLIB)" "1"
144frontend/%.o: CFLAGS += -DHAVE_TSLIB
145OBJS += frontend/pl_gun_ts.o
146endif
147frontend/%.o: CFLAGS += -DIN_EVDEV
148frontend/menu.o frontend/plat_sdl.o: frontend/revision.h
149
150libpcsxcore/gte_nf.o: libpcsxcore/gte.c
151 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
152
153frontend/revision.h: FORCE
154 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
155 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
156 @rm $@_
157.PHONY: FORCE
158
159%.o: %.S
160 $(CC) $(CFLAGS) -c $^ -o $@
161
162$(TARGET): $(OBJS)
163 $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
164
165clean: $(PLAT_CLEAN)
166 $(RM) $(TARGET) $(OBJS) $(TARGET).map
167
168ifneq ($(PLUGINS),)
169$(PLUGINS):
170 make -C plugins/gpulib/ clean
171 make -C $(dir $@)
172
173clean_plugins:
174 make -C plugins/gpulib/ clean
175 for dir in $(PLUGINS) ; do \
176 $(MAKE) -C $$(dirname $$dir) clean; done
177endif
178
179# ----------- release -----------
180
181VER ?= $(shell git describe master)
182
183ifeq "$(PLATFORM)" "pandora"
184PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
185
186PLUGINS ?= plugins/spunull/spunull.so plugins/gpu-gles/gpu_gles.so \
187 plugins/gpu_unai/gpu_unai.so plugins/dfxvideo/gpu_peops.so
188
189rel: pcsx $(PLUGINS) \
190 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
191 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
192 rm -rf out
193 mkdir -p out/plugins
194 cp -r $^ out/
195 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
196 rm out/pcsx.pxml.templ
197 mv out/*.so out/plugins/
198 mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
199 mv out/plugins/gpu_gles.so out/plugins/gpuGLES.so
200 mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
201 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
202endif
203
204ifeq "$(PLATFORM)" "caanoo"
205PLAT_CLEAN = caanoo_clean
206
207caanoo_clean:
208 $(RM) frontend/320240/pollux_set
209
210PLUGINS ?= plugins/spunull/spunull.so plugins/gpu_unai/gpu_unai.so \
211 plugins/gpu-gles/gpu_gles.so
212
213rel: pcsx $(PLUGINS) \
214 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
215 frontend/320240/pcsxb.png frontend/320240/skin \
216 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
217 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
218 frontend/320240/haptic_s.cfg \
219 readme.txt COPYING
220 rm -rf out
221 mkdir -p out/pcsx_rearmed/plugins
222 cp -r $^ out/pcsx_rearmed/
223 mv out/pcsx_rearmed/gpu_unai.so out/pcsx_rearmed/gpuPCSX4ALL.so
224 mv out/pcsx_rearmed/gpu_gles.so out/pcsx_rearmed/gpuGLES.so
225 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
226 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
227 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
228 mkdir out/pcsx_rearmed/lib/
229 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
230 mkdir out/pcsx_rearmed/bios/
231 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
232endif