core: add Sparc arch
diff --git a/tests/Makefile b/tests/Makefile
index 5b6950f..49d79db 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,5 +1,5 @@
 # Capstone Disassembler Engine
-# By Nguyen Anh Quynh <aquynh@gmail.com>, 2013>
+# By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014
 
 include ../config.mk
 
@@ -51,6 +51,9 @@
 ifneq (,$(findstring powerpc,$(CAPSTONE_ARCHS)))
 SOURCES += test_ppc.c
 endif
+ifneq (,$(findstring sparc,$(CAPSTONE_ARCHS)))
+SOURCES += test_sparc.c
+endif
 ifneq (,$(findstring x86,$(CAPSTONE_ARCHS)))
 SOURCES += test_x86.c
 endif