Fix the include path for Android builds when building cstool
diff --git a/cstool/Makefile b/cstool/Makefile
index cdd4a20..ec62751 100644
--- a/cstool/Makefile
+++ b/cstool/Makefile
@@ -6,9 +6,8 @@
 
 LIBNAME = capstone
 
-CFLAGS = -I../include
-CFLAGS += -I.
-LDFLAGS = -O3 -Wall -L.. -l$(LIBNAME)
+CFLAGS += -I../include -I.
+LDFLAGS += -O3 -Wall -L.. -l$(LIBNAME)
 
 TARGET = cstool
 SOURCES := $(wildcard *.c)