aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/Makefile
diff options
context:
space:
mode:
authornotaz2011-11-19 22:25:59 +0200
committernotaz2011-11-19 22:25:59 +0200
commit6f2ee2becb1eb33cac685594f13468cef4d09684 (patch)
tree3fc48aa2f2c3ac9028c228322efebbd84b9df308 /plugins/gpu_neon/Makefile
parent30f6e5edd98efed9c1624205e5c40c383e0db966 (diff)
downloadpcsx_rearmed-6f2ee2becb1eb33cac685594f13468cef4d09684.tar.gz
pcsx_rearmed-6f2ee2becb1eb33cac685594f13468cef4d09684.tar.bz2
pcsx_rearmed-6f2ee2becb1eb33cac685594f13468cef4d09684.zip
gpu_neon: support unai as rendering backend
Diffstat (limited to 'plugins/gpu_neon/Makefile')
-rw-r--r--plugins/gpu_neon/Makefile33
1 files changed, 19 insertions, 14 deletions
diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile
index adb5097..0778754 100644
--- a/plugins/gpu_neon/Makefile
+++ b/plugins/gpu_neon/Makefile
@@ -1,33 +1,38 @@
CC = $(CROSS_COMPILE)gcc
+CXX = $(CROSS_COMPILE)g++
+CC_ = $(CC)
ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
CFLAGS += -ggdb -Wall -fPIC -O2
CFLAGS += -fno-strict-aliasing
-LDFLAGS += -shared -Wl,-soname,$(TARGET)
SRC += gpu.c
ifeq "$(ARCH)" "arm"
-TARGET = gpu_neon.so
CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
SRC += vout_fb.c ../../frontend/cspace_neon.s
-else
-TARGET = gpu_neon.so.x86
+EXT = so
+endif
+ifeq "$(ARCH)" "x86_64"
CFLAGS += `sdl-config --cflags` -m32
LDFLAGS += `sdl-config --libs`
SRC += vout_sdl.c
+EXT = so.x86
endif
-PEOPS=1
-ifndef PEOPS
-SRC += psx_gpu_if.c
-else
-SRC += peops_if.c
-endif
-all: $(TARGET)
+TARGETS = gpu_neon.$(EXT) gpu_peops.$(EXT) gpu_unai.$(EXT)
+
+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): CC_ = $(CXX)
+
+all: $(TARGETS)
-$(TARGET): $(SRC)
- $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
+$(TARGETS): $(SRC)
+ $(CC_) -o $@ $(SRC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@
clean:
- $(RM) $(TARGET)
+ $(RM) $(TARGETS)