diff options
author | notaz | 2012-04-29 19:23:09 +0300 |
---|---|---|
committer | notaz | 2012-04-29 19:32:08 +0300 |
commit | ac6575cdd93d665efc374c1a14b391c6a5308972 (patch) | |
tree | 835c3727018e98f2ec096cdec5560b12f6093f05 /plugins/gpulib/Makefile | |
parent | 4ea7de6a1495abfbc49c54fd2a90e902fdfa13d9 (diff) | |
download | pcsx_rearmed-ac6575cdd93d665efc374c1a14b391c6a5308972.tar.gz pcsx_rearmed-ac6575cdd93d665efc374c1a14b391c6a5308972.tar.bz2 pcsx_rearmed-ac6575cdd93d665efc374c1a14b391c6a5308972.zip |
fix some build issues and warnings
Diffstat (limited to 'plugins/gpulib/Makefile')
-rw-r--r-- | plugins/gpulib/Makefile | 15 |
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) |