X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fgpu_neon%2FMakefile;fp=plugins%2Fgpu_neon%2FMakefile;h=aab989fc3f88ec4553bc1308b07c40c83693f618;hp=0000000000000000000000000000000000000000;hb=1ab64c5413f79cc38f9b17520df69a4e01041046;hpb=c006d9e3d7b4c7f0fda6c27062e362cfc7515630 diff --git a/plugins/gpu_neon/Makefile b/plugins/gpu_neon/Makefile new file mode 100644 index 00000000..aab989fc --- /dev/null +++ b/plugins/gpu_neon/Makefile @@ -0,0 +1,15 @@ +CC = $(CROSS_COMPILE)gcc +CFLAGS += -ggdb -Wall -fPIC +CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp + +TARGET = gpu_neon.so +LDFLAGS += -shared -Wl,-soname,$(TARGET) +SRC += gpu.c ../../frontend/arm_utils.s + +all: $(TARGET) + +$(TARGET): $(SRC) + $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) + +clean: + $(RM) $(TARGET)