blob: 08bf0ee6af839b42210e93043f73a9bb92f9cfd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
CFLAGS += -ggdb -Wall -O2 -DNDEBUG
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
|