fix some build issues and warnings
[pcsx_rearmed.git] / plugins / gpulib / Makefile
index 9ed992f..2739e5c 100644 (file)
@@ -8,18 +8,19 @@ include ../../config.mak
 OBJS += gpu.o
 
 ifeq "$(ARCH)" "arm"
+OBJS += vout_pl.o
+EXT = a
+else
+#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
-OBJS += vout_fb.o
-EXT = a
-else
-CFLAGS += `sdl-config --cflags`
-OBJS += vout_sdl.o
-EXT = $(ARCH).a
-endif
 CFLAGS += $(PLUGIN_CFLAGS)
 
 TARGET = gpulib.$(EXT)