fix some build issues and warnings
[pcsx_rearmed.git] / plugins / gpulib / Makefile
index 43f0d2b..2739e5c 100644 (file)
@@ -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)