allow multiple sound drivers to be compiled
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
4132e8ca 4TARGET = pcsx
a80ae4a0 5CFLAGS += -Wall -ggdb -Ifrontend -ffast-math
07c13dfd 6LDLIBS += -lpthread -lm
f95a77f7 7ifndef DEBUG
cfbd3c6e 8CFLAGS += -O2 -DNDEBUG
b60f2812 9endif
61bc6d40 10CXXFLAGS += $(CFLAGS)
4132e8ca 11#DRC_DBG = 1
12#PCNT = 1
80c2304e 13
38c2028e 14all: config.mak target_ plugins_
de38f20e 15
4132e8ca 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
80c2304e 27
61bc6d40 28CC_LINK = $(CC)
07c13dfd 29LDLIBS += $(MAIN_LDLIBS)
61bc6d40 30
80c2304e 31# core
32OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
3ebefe71 33 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
80c2304e 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
59774ed0 38OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
39ifeq "$(ARCH)" "arm"
40OBJS += libpcsxcore/gte_arm.o
41endif
a80ae4a0 42ifeq "$(HAVE_NEON)" "1"
8cfbda97 43OBJS += libpcsxcore/gte_neon.o
44endif
ac6575cd 45libpcsxcore/gte.o libpcsxcore/gte_nf.o: CFLAGS += -fno-strict-aliasing
ab948f7e 46libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign
47libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
48
f95a77f7 49# dynarec
4132e8ca 50ifeq "$(USE_DYNAREC)" "1"
7139f3c8 51OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
7e605697 52OBJS += libpcsxcore/new_dynarec/pcsxmem.o
7139f3c8 53endif
54OBJS += libpcsxcore/new_dynarec/emu_if.o
b1be1eee 55libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
56 libpcsxcore/new_dynarec/pcsxmem_inline.c
ab948f7e 57libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign
3eb78778 58ifdef DRC_DBG
59libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
60CFLAGS += -DDRC_DBG
61endif
4132e8ca 62ifeq "$(DRC_CACHE_BASE)" "1"
63libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
a327ad27 64endif
f95a77f7 65
e906c010 66# spu
ee849648 67OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 68 plugins/dfsound/registers.o plugins/dfsound/spu.o \
69 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 70plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
71 plugins/dfsound/xa.c
3a721c1f 72ifeq "$(ARCH)" "arm"
b17618c0 73OBJS += plugins/dfsound/arm_utils.o
74endif
07c13dfd 75ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
76plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 77OBJS += plugins/dfsound/oss.o
78endif
07c13dfd 79ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
80plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 81OBJS += plugins/dfsound/alsa.o
4132e8ca 82LDLIBS += -lasound
83endif
07c13dfd 84ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
85plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 86OBJS += plugins/dfsound/sdl.o
87endif
07c13dfd 88ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
89plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
90OBJS += plugins/dfsound/pulseaudio.o
91endif
92ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
93plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 94endif
95
61bc6d40 96# builtin gpu
97OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
90ca4913 98ifeq "$(HAVE_NEON)" "1"
62d7fa95 99OBJS += plugins/gpulib/cspace_neon.o
61bc6d40 100else
101OBJS += plugins/gpulib/cspace.o
102endif
103ifeq "$(BUILTIN_GPU)" "neon"
90ca4913 104OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
105plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
106plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
61bc6d40 107endif
108ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 109# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 110plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
111plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
112OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 113endif
61bc6d40 114ifeq "$(BUILTIN_GPU)" "unai"
115OBJS += plugins/gpulib/cspace.o
116OBJS += plugins/gpu_unai/gpulib_if.o
117ifeq "$(ARCH)" "arm"
118OBJS += plugins/gpu_unai/gpu_arm.o
119endif
120plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED
121CC_LINK = $(CXX)
b60f2812 122endif
e0c692d9 123
47bf65ab 124# cdrcimg
47bf65ab 125OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 126
384f5f43 127# dfinput
4c08b9e7 128OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 129
80c2304e 130# gui
29a8c4f3 131OBJS += frontend/main.o frontend/plugin.o
38c2028e 132OBJS += frontend/common/readpng.o frontend/common/fonts.o
133OBJS += frontend/linux/plat.o
55b0eeea 134
4132e8ca 135ifeq "$(PLATFORM)" "generic"
7badc935 136OBJS += frontend/plat_sdl.o frontend/common/in_sdl.o
38c2028e 137USE_FRONTEND = 1
4132e8ca 138endif
55b0eeea 139ifeq "$(PLATFORM)" "pandora"
55b0eeea 140OBJS += frontend/linux/fbdev.o
dd4d5a35 141OBJS += frontend/plat_omap.o frontend/linux/xenv.o
55b0eeea 142OBJS += frontend/plat_pandora.o
38c2028e 143USE_FRONTEND = 1
4132e8ca 144endif
55b0eeea 145ifeq "$(PLATFORM)" "caanoo"
faf2b2aa 146OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
221be40d 147OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o
38c2028e 148USE_FRONTEND = 1
149endif
150ifeq "$(PLATFORM)" "maemo"
151OBJS += maemo/hildon.o maemo/main.o
152maemo/%.o: maemo/%.c
153OBJS += frontend/plugin_lib.o
154endif
155ifeq "$(PLATFORM)" "libretro"
156OBJS += frontend/libretro.o
157endif
158ifeq "$(USE_FRONTEND)" "1"
159OBJS += frontend/menu.o frontend/linux/in_evdev.o
160OBJS += frontend/common/input.o
161OBJS += frontend/plugin_lib.o
162ifeq "$(HAVE_TSLIB)" "1"
163frontend/%.o: CFLAGS += -DHAVE_TSLIB
164OBJS += frontend/pl_gun_ts.o
165endif
166else
167CFLAGS += -DNO_FRONTEND
55b0eeea 168endif
a80ae4a0 169
447783f8 170ifdef X11
171frontend/%.o: CFLAGS += -DX11
172OBJS += frontend/xkb.o
173endif
72228559 174ifdef PCNT
175CFLAGS += -DPCNT
176endif
ab948f7e 177frontend/%.o: CFLAGS += -DIN_EVDEV
38c2028e 178frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h
3c70c47b 179
59774ed0 180libpcsxcore/gte_nf.o: libpcsxcore/gte.c
181 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
182
3c70c47b 183frontend/revision.h: FORCE
184 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
185 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
186 @rm $@_
187.PHONY: FORCE
188
90ca4913 189%.o: %.S
190 $(CC) $(CFLAGS) -c $^ -o $@
80c2304e 191
38c2028e 192target_: $(TARGET)
193
80c2304e 194$(TARGET): $(OBJS)
61bc6d40 195 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map
80c2304e 196
dd4d5a35 197clean: $(PLAT_CLEAN) clean_plugins
4132e8ca 198 $(RM) $(TARGET) $(OBJS) $(TARGET).map
0d464c77 199
4132e8ca 200ifneq ($(PLUGINS),)
dd4d5a35 201plugins_: $(PLUGINS)
202
ee78346e 203$(PLUGINS):
204 make -C $(dir $@)
f932e54b 205
ee78346e 206clean_plugins:
ea1f6f2f 207 make -C plugins/gpulib/ clean
ee78346e 208 for dir in $(PLUGINS) ; do \
209 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 210else
211plugins_:
212clean_plugins:
4132e8ca 213endif
80c2304e 214
303ee308 215# ----------- release -----------
216
4132e8ca 217VER ?= $(shell git describe master)
218
dd4d5a35 219ifeq "$(PLATFORM)" "generic"
220OUT = pcsx_rearmed_$(VER)
221
222rel: pcsx $(PLUGINS) \
223 frontend/pandora/skin readme.txt COPYING
224 rm -rf $(OUT)
225 mkdir -p $(OUT)/plugins
226 mkdir -p $(OUT)/bios
227 cp -r $^ $(OUT)/
228 mv $(OUT)/*.so* $(OUT)/plugins/
229 zip -9 -r $(OUT).zip $(OUT)
230endif
231
4132e8ca 232ifeq "$(PLATFORM)" "pandora"
303ee308 233PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
234
ee78346e 235rel: pcsx $(PLUGINS) \
9e0630ab 236 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
237 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 238 rm -rf out
bbd837c6 239 mkdir -p out/plugins
303ee308 240 cp -r $^ out/
3938f69a 241 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
242 rm out/pcsx.pxml.templ
bbd837c6 243 mv out/*.so out/plugins/
59f1c85c 244 mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so
ea1f6f2f 245 mv out/plugins/gpu_gles.so out/plugins/gpuGLES.so
59f1c85c 246 mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so
9e0630ab 247 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 248endif
249
250ifeq "$(PLATFORM)" "caanoo"
251PLAT_CLEAN = caanoo_clean
252
253caanoo_clean:
254 $(RM) frontend/320240/pollux_set
255
4132e8ca 256rel: pcsx $(PLUGINS) \
257 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
258 frontend/320240/pcsxb.png frontend/320240/skin \
259 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
260 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
261 frontend/320240/haptic_s.cfg \
262 readme.txt COPYING
263 rm -rf out
264 mkdir -p out/pcsx_rearmed/plugins
265 cp -r $^ out/pcsx_rearmed/
266 mv out/pcsx_rearmed/gpu_unai.so out/pcsx_rearmed/gpuPCSX4ALL.so
267 mv out/pcsx_rearmed/gpu_gles.so out/pcsx_rearmed/gpuGLES.so
268 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
269 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
270 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
271 mkdir out/pcsx_rearmed/lib/
272 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
273 mkdir out/pcsx_rearmed/bios/
274 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
275endif