Added PSClassic to makefile (#278)
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
9aff1963 4TARGET ?= pcsx
9b400da1 5CFLAGS += -Wall -Iinclude -ffast-math
6ifeq ($(DEBUG), 1)
0f97d2d8 7CFLAGS += -O0 -ggdb
9b400da1 8else
73081f23 9ifeq ($(platform), vita)
30373936 10CFLAGS += -O3 -DNDEBUG
73081f23 11else
cfbd3c6e 12CFLAGS += -O2 -DNDEBUG
b60f2812 13endif
73081f23 14endif
61bc6d40 15CXXFLAGS += $(CFLAGS)
4132e8ca 16#DRC_DBG = 1
17#PCNT = 1
80c2304e 18
38c2028e 19all: config.mak target_ plugins_
de38f20e 20
9aff1963 21ifndef NO_CONFIG_MAK
4132e8ca 22ifneq ($(wildcard config.mak),)
23config.mak: ./configure
24 @echo $@ is out-of-date, running configure
25 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
26include config.mak
27else
28config.mak:
29 @echo "Please run ./configure before running make!"
30 @exit 1
31endif
9aff1963 32else # NO_CONFIG_MAK
33config.mak:
34endif
35
4132e8ca 36-include Makefile.local
80c2304e 37
9aff1963 38CC_LINK ?= $(CC)
39CC_AS ?= $(CC)
22fa3f2b 40LDFLAGS += $(MAIN_LDFLAGS)
9aff1963 41EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
07c13dfd 42LDLIBS += $(MAIN_LDLIBS)
e0aec5ee 43ifdef PCNT
44CFLAGS += -DPCNT
45endif
61bc6d40 46
80c2304e 47# core
48OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
3ebefe71 49 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
80c2304e 50 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
51 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
52 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
53 libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
59774ed0 54OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
7795edd6 55ifeq ($(WANT_ZLIB),1)
bab9a272 56CFLAGS += -Ideps/zlib
7795edd6
JAS
57OBJS += deps/zlib/adler32.o \
58 deps/zlib/compress.o \
59 deps/zlib/crc32.o \
60 deps/zlib/deflate.o \
61 deps/zlib/gzclose.o \
62 deps/zlib/gzlib.o \
63 deps/zlib/gzread.o \
64 deps/zlib/gzwrite.o \
65 deps/zlib/inffast.o \
66 deps/zlib/inflate.o \
67 deps/zlib/inftrees.o \
68 deps/zlib/trees.o \
69 deps/zlib/uncompr.o \
70 deps/zlib/zutil.o
71endif
59774ed0 72ifeq "$(ARCH)" "arm"
73OBJS += libpcsxcore/gte_arm.o
74endif
a80ae4a0 75ifeq "$(HAVE_NEON)" "1"
8cfbda97 76OBJS += libpcsxcore/gte_neon.o
77endif
305c8c93 78libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 79
f95a77f7 80# dynarec
4132e8ca 81ifeq "$(USE_DYNAREC)" "1"
6f7b3633 82OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/arm/linkage_arm.o
83OBJS += libpcsxcore/new_dynarec/backends/psx/pcsxmem.o
448bbcae 84else
6f173b35 85libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -DDRC_DISABLE
48f615ba 86frontend/libretro.o: CFLAGS += -DDRC_DISABLE
7139f3c8 87endif
6f173b35 88OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o
89libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/arm/assem_arm.c \
90 libpcsxcore/new_dynarec/backends/psx/pcsxmem_inline.c
3eb78778 91ifdef DRC_DBG
6f173b35 92libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
3eb78778 93CFLAGS += -DDRC_DBG
94endif
4132e8ca 95ifeq "$(DRC_CACHE_BASE)" "1"
96libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
6f173b35 97libpcsxcore/new_dynarec/backends/psx/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
98libpcsxcore/new_dynarec/arm/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
a327ad27 99endif
f95a77f7 100
e906c010 101# spu
ee849648 102OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 103 plugins/dfsound/registers.o plugins/dfsound/spu.o \
104 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 105plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
106 plugins/dfsound/xa.c
3a721c1f 107ifeq "$(ARCH)" "arm"
b17618c0 108OBJS += plugins/dfsound/arm_utils.o
109endif
5514a050 110ifeq "$(HAVE_C64_TOOLS)" "1"
111plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
112plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 113frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 114endif
07c13dfd 115ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
116plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 117OBJS += plugins/dfsound/oss.o
118endif
07c13dfd 119ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
120plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 121OBJS += plugins/dfsound/alsa.o
4132e8ca 122LDLIBS += -lasound
123endif
07c13dfd 124ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
125plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 126OBJS += plugins/dfsound/sdl.o
127endif
07c13dfd 128ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
129plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
130OBJS += plugins/dfsound/pulseaudio.o
131endif
132ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
133plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 134endif
135
61bc6d40 136# builtin gpu
137OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 138ifeq "$(BUILTIN_GPU)" "neon"
90ca4913 139OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
140plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
141plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
61bc6d40 142endif
143ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 144# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 145plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
146plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
147OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 148endif
61bc6d40 149ifeq "$(BUILTIN_GPU)" "unai"
61bc6d40 150OBJS += plugins/gpu_unai/gpulib_if.o
151ifeq "$(ARCH)" "arm"
152OBJS += plugins/gpu_unai/gpu_arm.o
153endif
46aa5b98 154plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 155CC_LINK = $(CXX)
b60f2812 156endif
e0c692d9 157
47bf65ab 158# cdrcimg
47bf65ab 159OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 160
384f5f43 161# dfinput
4c08b9e7 162OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 163
cc56203b 164# frontend/gui
c82f907a 165OBJS += frontend/cspace.o
166ifeq "$(HAVE_NEON)" "1"
167OBJS += frontend/cspace_neon.o
d57557c0 168else
169ifeq "$(ARCH)" "arm"
170OBJS += frontend/cspace_arm.o
171endif
c82f907a 172endif
173
4132e8ca 174ifeq "$(PLATFORM)" "generic"
5b9aa749 175OBJS += frontend/libpicofe/in_sdl.o
176OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 177OBJS += frontend/libpicofe/plat_dummy.o
178OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 179OBJS += frontend/plat_sdl.o
180ifeq "$(HAVE_GLES)" "1"
2c616080 181OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 182LDLIBS += $(LDLIBS_GLES)
183frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 184frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 185frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
186frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
187endif
cc56203b 188USE_PLUGIN_LIB = 1
38c2028e 189USE_FRONTEND = 1
4132e8ca 190endif
55b0eeea 191ifeq "$(PLATFORM)" "pandora"
cc56203b 192OBJS += frontend/libpicofe/pandora/plat.o
193OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
194OBJS += frontend/libpicofe/linux/in_evdev.o
195OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 196frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 197frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 198USE_PLUGIN_LIB = 1
38c2028e 199USE_FRONTEND = 1
4132e8ca 200endif
55b0eeea 201ifeq "$(PLATFORM)" "caanoo"
cc56203b 202OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
203OBJS += frontend/libpicofe/gp2x/soc_pollux.o
204OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 205OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 206frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 207USE_PLUGIN_LIB = 1
38c2028e 208USE_FRONTEND = 1
209endif
210ifeq "$(PLATFORM)" "maemo"
baaef67b 211OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 212maemo/%.o: maemo/%.c
cc56203b 213USE_PLUGIN_LIB = 1
a76fd953 214LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 215CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
216CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
217LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 218endif
219ifeq "$(PLATFORM)" "libretro"
220OBJS += frontend/libretro.o
46aa5b98 221CFLAGS += -DFRONTEND_SUPPORTS_RGB565
f40e483e 222CFLAGS += -DHAVE_LIBRETRO
ce0e7ac9 223
224ifeq ($(MMAP_WIN32),1)
225OBJS += libpcsxcore/memmap_win32.o
226endif
38c2028e 227endif
cc56203b 228
229ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 230OBJS += frontend/plugin_lib.o
cc56203b 231OBJS += frontend/libpicofe/linux/plat.o
232OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
233ifeq "$(HAVE_NEON)" "1"
234OBJS += frontend/libpicofe/arm/neon_scale2x.o
235OBJS += frontend/libpicofe/arm/neon_eagle2x.o
236frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
237frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
238endif
239endif
240ifeq "$(USE_FRONTEND)" "1"
241OBJS += frontend/menu.o
242OBJS += frontend/libpicofe/input.o
243frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 244ifeq "$(HAVE_TSLIB)" "1"
245frontend/%.o: CFLAGS += -DHAVE_TSLIB
246OBJS += frontend/pl_gun_ts.o
247endif
248else
249CFLAGS += -DNO_FRONTEND
55b0eeea 250endif
a80ae4a0 251
cc56203b 252# misc
253OBJS += frontend/main.o frontend/plugin.o
254
e0aec5ee 255
a1a232ad 256frontend/menu.o frontend/main.o: frontend/revision.h
257frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 258
cc56203b 259frontend/libpicofe/%.c:
fa56d360 260 @echo "libpicofe module is missing, please run:"
261 @echo "git submodule init && git submodule update"
262 @exit 1
263
59774ed0 264libpcsxcore/gte_nf.o: libpcsxcore/gte.c
265 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
266
3c70c47b 267frontend/revision.h: FORCE
268 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
269 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
270 @rm $@_
3c70c47b 271
90ca4913 272%.o: %.S
9aff1963 273 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 274
fc99395c 275%.o: %.cpp
276 $(CXX) $(CXXFLAGS) -c -o $@ $<
277
7795edd6
JAS
278%.o: %.c
279 $(CC) $(CFLAGS) -c -o $@ $<
e0aec5ee 280
38c2028e 281target_: $(TARGET)
282
80c2304e 283$(TARGET): $(OBJS)
d28150f7 284 @echo "** BUILDING $(TARGET) FOR PLATFORM $(PLATFORM) **"
fc99395c 285ifeq ($(STATIC_LINKING), 1)
286 $(AR) rcs $@ $(OBJS)
287else
9aff1963 288 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
fc99395c 289endif
d28150f7 290 @echo "** BUILD SUCCESSFUL! GG NO RE **"
80c2304e 291
dd4d5a35 292clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 293 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 294
4132e8ca 295ifneq ($(PLUGINS),)
dd4d5a35 296plugins_: $(PLUGINS)
297
ee78346e 298$(PLUGINS):
299 make -C $(dir $@)
f932e54b 300
ee78346e 301clean_plugins:
ea1f6f2f 302 make -C plugins/gpulib/ clean
ee78346e 303 for dir in $(PLUGINS) ; do \
304 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 305else
306plugins_:
307clean_plugins:
4132e8ca 308endif
80c2304e 309
fa56d360 310.PHONY: all clean target_ plugins_ clean_plugins FORCE
311
303ee308 312# ----------- release -----------
313
cd5abe38 314VER ?= $(shell git describe HEAD)
4132e8ca 315
dd4d5a35 316ifeq "$(PLATFORM)" "generic"
317OUT = pcsx_rearmed_$(VER)
318
319rel: pcsx $(PLUGINS) \
320 frontend/pandora/skin readme.txt COPYING
321 rm -rf $(OUT)
322 mkdir -p $(OUT)/plugins
323 mkdir -p $(OUT)/bios
324 cp -r $^ $(OUT)/
325 mv $(OUT)/*.so* $(OUT)/plugins/
326 zip -9 -r $(OUT).zip $(OUT)
327endif
328
4132e8ca 329ifeq "$(PLATFORM)" "pandora"
303ee308 330PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
331
8886a808 332rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 333 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
334 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 335 rm -rf out
bbd837c6 336 mkdir -p out/plugins
303ee308 337 cp -r $^ out/
3938f69a 338 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
339 rm out/pcsx.pxml.templ
bbd837c6 340 mv out/*.so out/plugins/
9e0630ab 341 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 342endif
343
344ifeq "$(PLATFORM)" "caanoo"
345PLAT_CLEAN = caanoo_clean
346
347caanoo_clean:
348 $(RM) frontend/320240/pollux_set
349
4132e8ca 350rel: pcsx $(PLUGINS) \
351 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
352 frontend/320240/pcsxb.png frontend/320240/skin \
353 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
354 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
355 frontend/320240/haptic_s.cfg \
356 readme.txt COPYING
357 rm -rf out
358 mkdir -p out/pcsx_rearmed/plugins
359 cp -r $^ out/pcsx_rearmed/
4132e8ca 360 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
361 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
362 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
363 mkdir out/pcsx_rearmed/lib/
364 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
365 mkdir out/pcsx_rearmed/bios/
366 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
367endif