aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon
diff options
context:
space:
mode:
authornotaz2011-12-20 02:38:53 +0200
committernotaz2011-12-20 23:40:51 +0200
commitb3db94096d7e5b4f60d610a441e370d639b3fd06 (patch)
tree2b8d0aa0d4e2a07b36cb21b3725b79e2b6990f72 /plugins/gpu_neon
parent89c0de4234815e0fa9e8399b940ecec6c89a062b (diff)
downloadpcsx_rearmed-b3db94096d7e5b4f60d610a441e370d639b3fd06.tar.gz
pcsx_rearmed-b3db94096d7e5b4f60d610a441e370d639b3fd06.tar.bz2
pcsx_rearmed-b3db94096d7e5b4f60d610a441e370d639b3fd06.zip
gpu_unai: add 4bpp asm sprite blitter
Diffstat (limited to 'plugins/gpu_neon')
-rw-r--r--plugins/gpu_neon/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile
index f227752..66a2bd5 100644
--- a/plugins/gpu_neon/Makefile
+++ b/plugins/gpu_neon/Makefile
@@ -6,6 +6,9 @@ ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-
CFLAGS += -ggdb -Wall -fPIC -O2
CFLAGS += -fno-strict-aliasing
+ifdef MAEMO
+CFLAGS += -DMAEMO
+endif
SRC += gpu.c
ifeq "$(ARCH)" "arm"
@@ -38,7 +41,7 @@ gpu_neon.$(EXT): SRC += psx_gpu_if.c
gpu_neon.$(EXT): CFLAGS += -fno-strict-aliasing
gpu_peops.$(EXT): SRC += peops_if.c
gpu_peops.$(EXT): CFLAGS += -fno-strict-aliasing
-gpu_unai.$(EXT): SRC += unai_if.cpp
+gpu_unai.$(EXT): SRC += unai_if.cpp ../gpu_unai/gpu_arm.s
gpu_unai.$(EXT): CC_ = $(CXX)
all: $(TARGETS)