#
# nono
# Copyright (C) 2020 nono project
# Licensed under nono-license.txt
#

#
# debugger
#

.include "../Makefile.inc"

TARGETS=	libnndebugger.a

CXXSRCS=	\
	branchhistory.cpp	\
	debugger.cpp	\
	debugger_hd64180.cpp	\
	debugger_m680x0.cpp	\
	debugger_m88xx0.cpp	\
	debugger_memory.cpp	\
	disasm.cpp	\
	memdump.cpp	\
	vectortable.cpp	\

OBJS=	${CXXSRCS:.cpp=.o}

libnndebugger.a:	${OBJS}
	rm -f $@
	${AR} r $@ $>
	${RANLIB} $@

.include "../Makefile.rule"
