frontend: update libpicofe, fix missed callbacks
[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 += -DGPU_NEON -DNEON_BUILD
10ifeq "$(HAVE_NEON_ASM)" "1"
11SRC += psx_gpu/psx_gpu_arm_neon.S
12else
13SRC += psx_gpu/psx_gpu_simd.c
14CFLAGS += -DSIMD_BUILD
15endif
16
17BIN_GPULIB = gpu_neon.so
18include ../gpulib/gpulib.mak