gpu_neon: fix x86 build
[pcsx_rearmed.git] / plugins / gpu_neon / Makefile.test
CommitLineData
adb4b2c6 1CC = $(CROSS_COMPILE)gcc
2CXX = $(CROSS_COMPILE)g++
3CC_ = $(CROSS_COMPILE)gcc
4
5ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
90ca4913 6HAVE_NEON = $(shell $(CC_) -E -dD $(CFLAGS) gpu.h | grep -q '__ARM_NEON__ 1' && echo 1)
adb4b2c6 7
9a6e7816 8CFLAGS += -ggdb -Wall -DTEST
90ca4913 9ifndef DEBUG
adb4b2c6 10CFLAGS += -O2
90ca4913 11endif
adb4b2c6 12ifeq "$(ARCH)" "arm"
13CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
14endif
15ifeq "$(ARCH)" "x86_64"
16CFLAGS += -m32
17endif
18
b78edec7 19TARGETS = test_neon test_peops test_unai
90ca4913 20
adb4b2c6 21SRC += test.c
22
23all: $(TARGETS)
24
b78edec7 25test_neon: SRC += psx_gpu_if.c
90ca4913 26test_neon: psx_gpu_if.c psx_gpu/*.c
b78edec7 27test_neon: CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
28ifeq "$(HAVE_NEON)" "1"
29test_neon: SRC += psx_gpu/psx_gpu_arm_neon.S
30test_neon: CFLAGS += -DNEON_BUILD
31else
32test_neon: CFLAGS += -fno-strict-aliasing
33endif
adb4b2c6 34test_peops: SRC += peops_if.c
35test_peops: CFLAGS += -fno-strict-aliasing
b78edec7 36test_unai: SRC += unai_if.cpp
adb4b2c6 37test_unai: CC_ = $(CXX)
b78edec7 38ifeq "$(ARCH)" "arm"
39test_unai: SRC += ../gpu_unai/gpu_arm.s
40endif
adb4b2c6 41
42$(TARGETS): $(SRC)
43 $(CC_) -o $@ $(SRC) $(CFLAGS) $(LDFLAGS)
44
45clean:
46 $(RM) $(TARGETS)