psx_gpu: minor test fixes
[pcsx_rearmed.git] / plugins / gpu_neon / psx_gpu / tests / Makefile
CommitLineData
f82c6250 1CC = $(CROSS_COMPILE)gcc
2CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
3CFLAGS += -Wall -ggdb
a2fc8070 4CFLAGS += -fno-strict-aliasing
f82c6250 5
6CFLAGS += `sdl-config --cflags`
7LDFLAGS += `sdl-config --libs`
8
9VPATH += ..
10
11ifdef NEON
12CFLAGS += -mcpu=cortex-a8 -mfpu=neon -DNEON_BUILD
13ASFLAGS = $(CFLAGS)
14OBJ += psx_gpu_arm_neon.o
15endif
16ifndef DEBUG
a2fc8070 17CFLAGS += -O2 -DNDEBUG
f82c6250 18endif
19
20OBJ += psx_gpu.o psx_gpu_parse.o psx_gpu_main.o
21
22all: psx_gpu
23
24psx_gpu: $(OBJ)
25
26clean:
27 $(RM) psx_gpu $(OBJ)