Skip to content

Commit

Permalink
Split arch-specific code into disasm-X.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandro Sanchez Bach authored and AlexAltea committed May 14, 2017
1 parent ba18634 commit a891db8
Show file tree
Hide file tree
Showing 4 changed files with 437 additions and 405 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ CXX=g++
CXXFLAGS=-Wall -std=c++11 -O2 -DNDEBUG
LDFLAGS=-lcapstone -lbfd

SRC=nucleus.cc bb.cc cfg.cc dataregion.cc disasm.cc edge.cc exception.cc export.cc function.cc insn.cc loader.cc log.cc options.cc strategy.cc util.cc
OBJ=$(patsubst %.cc,obj/%.o,$(SRC))
SRC=$(wildcard *.cc)
OBJ=$(patsubst %.cc, obj/%.o, $(SRC))
BIN=nucleus

.PHONY: all clean
Expand Down
Loading

0 comments on commit a891db8

Please sign in to comment.