Skip to content

Commit

Permalink
Fix the include path for Android builds when building cstool
Browse files Browse the repository at this point in the history
  • Loading branch information
zachriggle authored and aquynh committed Aug 29, 2017
1 parent c10a631 commit 596d316
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cstool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ include ../functions.mk

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)
Expand Down

0 comments on commit 596d316

Please sign in to comment.