diff options
author | notaz | 2013-02-08 02:13:03 +0200 |
---|---|---|
committer | notaz | 2013-02-08 02:13:03 +0200 |
commit | d57557c0644f9294e30657f0c7cf673cf2914695 (patch) | |
tree | f8623af5beeb8939631acceb2acb505c9497f71c /Makefile | |
parent | c82f907a99f7d0d3071471489d247f4b4394a8b7 (diff) | |
download | pcsx_rearmed-d57557c0644f9294e30657f0c7cf673cf2914695.tar.gz pcsx_rearmed-d57557c0644f9294e30657f0c7cf673cf2914695.tar.bz2 pcsx_rearmed-d57557c0644f9294e30657f0c7cf673cf2914695.zip |
frontend: add armv6 color space converter
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -129,6 +129,10 @@ OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o OBJS += frontend/cspace.o ifeq "$(HAVE_NEON)" "1" OBJS += frontend/cspace_neon.o +else +ifeq "$(ARCH)" "arm" +OBJS += frontend/cspace_arm.o +endif endif ifeq "$(PLATFORM)" "generic" |