X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=Makefile;h=335a03ac4bded3a30de2049dfa95841983c83926;hp=2ccd0e2a84a2813af2e47f15dd494c9bbafc9e56;hb=ab948f7e6d437dddd070000f36489d7e983eb4ad;hpb=e0c692d9417fdea51a1deebda1048d1a91f1270f diff --git a/Makefile b/Makefile index 2ccd0e2a..335a03ac 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ LD = $(CROSS_COMPILE)ld ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}') -CFLAGS += -ggdb -Ifrontend +CFLAGS += -Wall -ggdb -Ifrontend LDFLAGS += -lz -lpthread -ldl -lpng -lbz2 ifeq "$(ARCH)" "arm" CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp -ffast-math @@ -33,13 +33,21 @@ OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore 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 +ifeq "$(ARCH)" "arm" +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 +56,8 @@ 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 "$(USE_OSS)" "1" plugins/dfsound/%.o: CFLAGS += -DUSEOSS OBJS += plugins/dfsound/oss.o @@ -59,8 +69,11 @@ LDFLAGS += -lasound endif # gpu -plugins/dfxvideo/%.o: CFLAGS += -Wall +# note: code is not safe for strict-aliasing? (Castlevania problems) +plugins/dfxvideo/%.o: CFLAGS += -fno-strict-aliasing OBJS += plugins/dfxvideo/gpu.o +plugins/dfxvideo/gpu.o: plugins/dfxvideo/fps.c plugins/dfxvideo/prim.c \ + plugins/dfxvideo/gpu.c plugins/dfxvideo/soft.c ifdef X11 LDFLAGS += -lX11 -lXv OBJS += plugins/dfxvideo/draw.o @@ -69,11 +82,13 @@ OBJS += plugins/dfxvideo/draw_fb.o endif # cdrcimg -plugins/cdrcimg/%.o: CFLAGS += -Wall OBJS += plugins/cdrcimg/cdrcimg.o +# dfinput +OBJS += plugins/dfinput/pad.o + # gui -OBJS += frontend/main.o frontend/plugin.o +OBJS += frontend/main.o frontend/plugin.o ifeq "$(USE_GTK)" "1" OBJS += maemo/hildon.o maemo/main.o maemo/%.o: maemo/%.c @@ -84,6 +99,7 @@ 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/plat_omap.o +OBJS += frontend/pandora.o else OBJS += frontend/plat_dummy.o endif @@ -98,7 +114,7 @@ endif ifdef PCNT CFLAGS += -DPCNT endif -frontend/%.o: CFLAGS += -Wall -DIN_EVDEV +frontend/%.o: CFLAGS += -DIN_EVDEV frontend/menu.o: frontend/revision.h frontend/revision.h: FORCE @@ -128,13 +144,15 @@ 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 + pandora/pcsx.sh pandora/pcsx.pxml.templ pandora/pcsx.png \ + pandora/picorestore pandora/readme.txt pandora/skin 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 + $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i pandora/pcsx.png -c