aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_neon/Makefile
blob: 8a7342bd7dd09aefea5899ac2f167af08fba7e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS += -ggdb -Wall -O2

include ../../config.mak

SRC += psx_gpu_if.c

CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
ifeq "$(HAVE_NEON)" "1"
SRC += psx_gpu/psx_gpu_arm_neon.S
CFLAGS += -DNEON_BUILD
else
CFLAGS += -fno-strict-aliasing
endif

BIN_GPULIB = gpu_neon.so
include ../gpulib/gpulib.mak