--- nono/debugger/Makefile 2026/04/29 17:04:30 1.1.1.2 +++ nono/debugger/Makefile 2026/04/29 17:05:16 1.1.1.6 @@ -1,25 +1,33 @@ # # nono -# Copyright (C) 2019 isaki@NetBSD.org +# Copyright (C) 2020 nono project +# Licensed under nono-license.txt +# + # # debugger # +.include "../Makefile.inc" + TARGETS= libnndebugger.a CXXSRCS= \ - console.cpp \ - console_stdio.cpp \ - console_tcp.cpp \ - debugger.cpp \ - debugger_m680x0.cpp \ - debugger_m88xx0.cpp \ + 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} -.include "../Makefile.inc" - libnndebugger.a: ${OBJS} rm -f $@ ${AR} r $@ $> ${RANLIB} $@ + +.include "../Makefile.rule"