X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=21f3ef6ba21eba5e7dfbc166dbbf31b6935cc795;hp=db8e1f60994ebd86023aeebb62e5085a2271706f;hb=ffbe7a3972daf4a91b4d5ee4dd8a57517a7c029c;hpb=799b0b8773d6add1de99efd582c93701b82e970d diff --git a/Makefile b/Makefile index db8e1f60..21f3ef6b 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,15 @@ #CROSS_COMPILE= -AS = $(CROSS_COMPILE)as -CC = $(CROSS_COMPILE)gcc -LD = $(CROSS_COMPILE)ld - -ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}') - -CFLAGS += -ggdb -Ifrontend -LDFLAGS += -lz -lpthread -ldl -lpng -lbz2 -ifeq "$(ARCH)" "arm" -CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math -ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -endif -ifndef DEBUG -CFLAGS += -O2 -DNDEBUG +AS = $(CROSS_COMPILE)as +GCC = $(CROSS_COMPILE)gcc +CC = $(CROSS_COMPILE)gcc +LD = $(CROSS_COMPILE)ld +ifdef CC_OVERRIDE +CC = $(CC_OVERRIDE) endif -CFLAGS += $(EXTRA_CFLAGS) +ARM926 ?= 0 +ARM_CORTEXA8 ?= 1 +PLATFORM ?= pandora USE_OSS ?= 1 #USE_ALSA = 1 #DRC_DBG = 1 @@ -24,22 +18,59 @@ TARGET = pcsx -include Makefile.local +ARCH = $(shell $(GCC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}') + +CFLAGS += -Wall -ggdb -Ifrontend -ffast-math +LDFLAGS += -lpthread -ldl -lpng -lz -lm +ifndef DEBUG +CFLAGS += -O2 -DNDEBUG +endif +CFLAGS += $(EXTRA_CFLAGS) + +ifeq "$(ARCH)" "arm" +ifeq "$(ARM_CORTEXA8)" "1" +GCC_CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp +ASFLAGS += -mcpu=cortex-a8 -mfpu=neon +endif +ifeq "$(ARM926)" "1" +GCC_CFLAGS += -mcpu=arm926ej-s -mtune=arm926ej-s +ASFLAGS += -mcpu=arm926ej-s -mfloat-abi=softfp +endif +endif +CFLAGS += $(GCC_CFLAGS) + +# detect armv7 and NEON from the specified CPU +HAVE_NEON = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_NEON__ 1' && echo 1) +HAVE_ARMV7 = $(shell $(GCC) -E -dD $(GCC_CFLAGS) frontend/config.h | grep -q '__ARM_ARCH_7A__ 1' && echo 1) + all: $(TARGET) # core OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \ - libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/gte.o libpcsxcore/mdec.o \ + libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \ libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \ libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \ libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \ libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o +OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o +ifeq "$(ARCH)" "arm" +OBJS += libpcsxcore/gte_arm.o +endif +ifeq "$(HAVE_NEON)" "1" +OBJS += libpcsxcore/gte_neon.o +endif +libpcsxcore/cdrom.o libpcsxcore/misc.o: CFLAGS += -Wno-pointer-sign +libpcsxcore/misc.o libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull + # dynarec ifndef NO_NEW_DRC OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o OBJS += libpcsxcore/new_dynarec/pcsxmem.o endif OBJS += libpcsxcore/new_dynarec/emu_if.o -libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c +libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \ + libpcsxcore/new_dynarec/pcsxmem_inline.c +libpcsxcore/new_dynarec/new_dynarec.o: CFLAGS += -Wno-all -Wno-pointer-sign ifdef DRC_DBG libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 CFLAGS += -DDRC_DBG @@ -48,6 +79,11 @@ endif # spu OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \ plugins/dfsound/registers.o plugins/dfsound/spu.o +plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \ + plugins/dfsound/xa.c +ifeq "$(ARCH)" "arm" +OBJS += plugins/dfsound/arm_utils.o +endif ifeq "$(USE_OSS)" "1" plugins/dfsound/%.o: CFLAGS += -DUSEOSS OBJS += plugins/dfsound/oss.o @@ -59,39 +95,62 @@ LDFLAGS += -lasound endif # gpu -plugins/dfxvideo/%.o: CFLAGS += -Wall -OBJS += plugins/dfxvideo/gpu.o +OBJS += plugins/gpu_neon/gpu.o +ifeq "$(HAVE_NEON)" "1" +OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o +plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP +plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c +else +# note: code is not safe for strict-aliasing? (Castlevania problems) +plugins/gpu_neon/peops_if.o: CFLAGS += -fno-strict-aliasing +plugins/gpu_neon/peops_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c +OBJS += plugins/gpu_neon/peops_if.o +endif ifdef X11 -LDFLAGS += -lX11 -lXv -OBJS += plugins/dfxvideo/draw.o +LDFLAGS += -lX11 `sdl-config --libs` +OBJS += plugins/gpu_neon/vout_sdl.o +plugins/gpu_neon/vout_sdl.o: CFLAGS += `sdl-config --cflags` else -OBJS += plugins/dfxvideo/draw_fb.o +OBJS += plugins/gpu_neon/vout_fb.o endif # cdrcimg -plugins/cdrcimg/%.o: CFLAGS += -Wall OBJS += plugins/cdrcimg/cdrcimg.o +# dfinput +OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o + # gui -OBJS += frontend/main.o frontend/plugin.o +OBJS += frontend/main.o frontend/plugin.o +OBJS += frontend/plugin_lib.o frontend/common/readpng.o +OBJS += frontend/common/fonts.o frontend/linux/plat.o ifeq "$(USE_GTK)" "1" OBJS += maemo/hildon.o maemo/main.o maemo/%.o: maemo/%.c -maemo/%.o: CFLAGS += -Wall else -OBJS += frontend/plugin_lib.o frontend/menu.o -OBJS += frontend/linux/fbdev.o frontend/linux/in_evdev.o -OBJS += frontend/linux/plat.o frontend/linux/oshide.o -OBJS += frontend/common/fonts.o frontend/common/input.o frontend/common/readpng.o -ifeq "$(ARCH)" "arm" +OBJS += frontend/menu.o frontend/linux/in_evdev.o +OBJS += frontend/common/input.o frontend/linux/xenv.o + +ifeq "$(PLATFORM)" "pandora" +frontend/%.o: CFLAGS += -DVOUT_FBDEV +OBJS += frontend/linux/fbdev.o OBJS += frontend/plat_omap.o -OBJS += frontend/pandora.o +OBJS += frontend/plat_pandora.o +else +ifeq "$(PLATFORM)" "caanoo" +OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o +OBJS += frontend/gp2x/in_gp2x.o frontend/warm/warm.o else OBJS += frontend/plat_dummy.o endif +endif + endif # !USE_GTK -ifeq "$(ARCH)" "arm" -OBJS += frontend/arm_utils.o + +ifeq "$(HAVE_NEON)" "1" +OBJS += frontend/cspace_neon.o +else +OBJS += frontend/cspace.o endif ifdef X11 frontend/%.o: CFLAGS += -DX11 @@ -100,26 +159,36 @@ endif ifdef PCNT CFLAGS += -DPCNT endif -frontend/%.o: CFLAGS += -Wall -DIN_EVDEV +ifndef NO_TSLIB +frontend/%.o: CFLAGS += -DHAVE_TSLIB +OBJS += frontend/pl_gun_ts.o +endif +%.o: ASFLAGS += --defsym HAVE_ARMV7=$(HAVE_ARMV7) +frontend/%.o: CFLAGS += -DIN_EVDEV frontend/menu.o: frontend/revision.h +libpcsxcore/gte_nf.o: libpcsxcore/gte.c + $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS + frontend/revision.h: FORCE @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ @rm $@_ .PHONY: FORCE +%.o: %.S + $(CC) $(CFLAGS) -c $^ -o $@ $(TARGET): $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) -Wl,-Map=$@.map -PLUGINS = plugins/spunull/spunull.so plugins/gpu_unai/gpuPCSX4ALL.so \ - plugins/gpu-gles/gpuGLES.so +PLUGINS ?= plugins/spunull/spunull.so plugins/gpu-gles/gpuGLES.so \ + plugins/gpu_neon/gpu_unai.so plugins/gpu_neon/gpu_peops.so $(PLUGINS): make -C $(dir $@) -clean: +clean: $(PLAT_CLEAN) $(RM) $(TARGET) $(OBJS) $(TARGET).map clean_plugins: @@ -130,13 +199,17 @@ clean_plugins: PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh -VER ?= $(shell git describe --abbrev=0 master) +VER ?= $(shell git describe master) rel: pcsx $(PLUGINS) \ - pandora/pcsx.sh pandora/pcsx.pxml pandora/pcsx.png \ - pandora/picorestore pandora/readme.txt skin COPYING + frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \ + frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING rm -rf out mkdir -p out/plugins cp -r $^ out/ + sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml + rm out/pcsx.pxml.templ mv out/*.so out/plugins/ - $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x pandora/pcsx.pxml -i pandora/pcsx.png -c + mv out/plugins/gpu_unai.so out/plugins/gpuPCSX4ALL.so + mv out/plugins/gpu_peops.so out/plugins/gpuPEOPS.so + $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c