From a7a9371b3a3d957274440e2e4ad84215a1cf19b1 Mon Sep 17 00:00:00 2001 From: jsteffens Date: Sun, 21 Aug 2016 21:52:29 +0000 Subject: [PATCH] Makefile.am: Fix syntax errors --- desmume/src/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/desmume/src/Makefile.am b/desmume/src/Makefile.am index f5d8afceb..be5652c99 100644 --- a/desmume/src/Makefile.am +++ b/desmume/src/Makefile.am @@ -108,18 +108,18 @@ libdesmume_a_SOURCES = \ libretro-common/rthreads/async_job.c \ libretro-common/rthreads/rsemaphore.c \ libretro-common/rthreads/rthreads.c - -if SUPPORT_SSE2 += \ + +if SUPPORT_SSE2 libdesmume_a_SOURCES += \ utils/colorspacehandler/colorspacehandler_SSE2.cpp endif -if SUPPORT_AVX2 += \ +if SUPPORT_AVX2 libdesmume_a_SOURCES += \ utils/colorspacehandler/colorspacehandler_AVX2.cpp endif -if SUPPORT_ALTIVEC += \ +if SUPPORT_ALTIVEC libdesmume_a_SOURCES += \ utils/colorspacehandler/colorspacehandler_AltiVec.cpp endif