frontend: drop an outdated sanity check
[pcsx_rearmed.git] / plugins / gpu_neon / Makefile
CommitLineData
c111e8f8 1CFLAGS += -ggdb -Wall -O2 -DNDEBUG
56f08d83 2
4132e8ca 3include ../../config.mak
7d993ee2 4
62d7fa95 5SRC += psx_gpu_if.c
b78edec7 6
62d7fa95 7CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
62d7fa95 8CFLAGS += -DNEON_BUILD
57467c77 9ifeq "$(HAVE_NEON)" "1"
10 ifeq "$(HAVE_NEON_ASM)" "1"
11 SRC += psx_gpu/psx_gpu_arm_neon.S
12 else
13 OBJS += psx_gpu/psx_gpu_simd.c
14 CFLAGS += -DSIMD_BUILD
15 endif
b78edec7 16else
62d7fa95 17CFLAGS += -fno-strict-aliasing
b78edec7 18endif
6f2ee2be 19
62d7fa95 20BIN_GPULIB = gpu_neon.so
21include ../gpulib/gpulib.mak