cdrom: change pause timing again
[pcsx_rearmed.git] / plugins / gpu_neon / Makefile
... / ...
CommitLineData
1CFLAGS += -ggdb -Wall -O2 -DNDEBUG
2
3include ../../config.mak
4
5SRC += psx_gpu_if.c
6
7CFLAGS += -I../../include
8CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
9CFLAGS += -DNEON_BUILD
10ifeq "$(HAVE_NEON)" "1"
11 ifeq "$(HAVE_NEON_ASM)" "1"
12 SRC += psx_gpu/psx_gpu_arm_neon.S
13 else
14 OBJS += psx_gpu/psx_gpu_simd.c
15 CFLAGS += -DSIMD_BUILD
16 endif
17else
18CFLAGS += -fno-strict-aliasing
19endif
20
21BIN_GPULIB = gpu_neon.so
22include ../gpulib/gpulib.mak