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