aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpulib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gpulib/Makefile')
-rw-r--r--plugins/gpulib/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/plugins/gpulib/Makefile b/plugins/gpulib/Makefile
index 43f0d2b..2739e5c 100644
--- a/plugins/gpulib/Makefile
+++ b/plugins/gpulib/Makefile
@@ -8,18 +8,19 @@ include ../../config.mak
OBJS += gpu.o
ifeq "$(ARCH)" "arm"
-ifeq "$(HAVE_NEON)" "1"
-OBJS += cspace_neon.o
-else
-OBJS += cspace.o
-endif
OBJS += vout_pl.o
EXT = a
else
-CFLAGS += `sdl-config --cflags`
-OBJS += vout_sdl.o
+#CFLAGS += `sdl-config --cflags`
+#OBJS += vout_sdl.o
+OBJS += vout_pl.o
EXT = $(ARCH).a
endif
+ifeq "$(HAVE_NEON)" "1"
+OBJS += cspace_neon.o
+else
+OBJS += cspace.o
+endif
CFLAGS += $(PLUGIN_CFLAGS)
TARGET = gpulib.$(EXT)