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