psx_gpu: change reciprocal table again
[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
4
5CFLAGS += `sdl-config --cflags`
6LDFLAGS += `sdl-config --libs`
7
8VPATH += ..
9
10ifdef NEON
11CFLAGS += -mcpu=cortex-a8 -mfpu=neon -DNEON_BUILD
12ASFLAGS = $(CFLAGS)
13OBJ += psx_gpu_arm_neon.o
14endif
15ifndef DEBUG
c111e8f8 16CFLAGS += -O2 -DNDEBUG -fno-strict-aliasing
f82c6250 17endif
18
19OBJ += psx_gpu.o psx_gpu_parse.o psx_gpu_main.o
20
21all: psx_gpu
22
23psx_gpu: $(OBJ)
24
25clean:
26 $(RM) psx_gpu $(OBJ)