gpu_neon: support caching renderers, update rearmed if
[pcsx_rearmed.git] / plugins / gpu_neon / Makefile
1 CC = $(CROSS_COMPILE)gcc
2
3 ARCH = $(shell $(CC) -v 2>&1 | grep -i 'target:' | awk '{print $$2}' | awk -F '-' '{print $$1}')
4
5 CFLAGS += -ggdb -Wall -fPIC -O2
6
7 LDFLAGS += -shared -Wl,-soname,$(TARGET)
8 SRC += gpu.c
9 ifeq "$(ARCH)" "arm"
10 TARGET = gpu_neon.so
11 CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
12 SRC += vout_fb.c ../../frontend/arm_utils.s
13 else
14 TARGET = gpu_neon.so.x86
15 CFLAGS += `sdl-config --cflags` -m32
16 LDFLAGS += `sdl-config --libs`
17 SRC += vout_sdl.c
18 endif
19 PEOPS=1
20 ifndef PEOPS
21 SRC += psx_gpu_if.c
22 else
23 SRC += peops.c
24 endif
25
26 all: $(TARGET)
27
28 $(TARGET): $(SRC)
29         $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
30
31 clean:
32         $(RM) $(TARGET)