Additional debugging info.

git-svn-id: http://www.cdkersey.com/harp/harptool@115 0246edb2-e076-4747-b392-db732a341fa2
This commit is contained in:
chad
2013-01-17 09:04:30 +00:00
parent 3ceabe2a61
commit 4428bcd1b7
7 changed files with 41 additions and 17 deletions

View File

@@ -1,11 +1,11 @@
################################################################################
# HARPtools by Chad D. Kersey, Summer 2011 #
################################################################################
CXXFLAGS=-g -fPIC -DUSE_DEBUG=3
CXXFLAGS=-g -DUSE_DEBUG=1 #-fPIC
LIB_OBJS=args.o obj.o mem.o core.o instruction.o enc.o util.o lex.yy.o
all: harptool libharplib.so libharplib.a #libqsim-harp.so
all: harptool # libharplib.so libharplib.a libqsim-harp.so
# Use -static so we don't have to install the library in order to just run
# Harptool.
@@ -26,9 +26,9 @@ harptool.o : harptool.cpp include/types.h include/core.h include/enc.h \
include/archdef.h include/args.h include/help.h
instruction.o : instruction.cpp include/instruction.h include/obj.h
obj.o : obj.cpp include/types.h include/obj.h include/util.h \
include/asm-tokens.h
include/asm-tokens.h include/debug.h
util.o : util.cpp include/types.h include/util.h
mem.o : mem.cpp include/types.h include/util.h include/mem.h
mem.o : mem.cpp include/types.h include/util.h include/mem.h include/debug.h
core.o : core.cpp include/types.h include/util.h include/mem.h \
include/debug.h include/archdef.h