--- nono/debugger/Makefile 2026/04/29 17:04:28 1.1 +++ nono/debugger/Makefile 2026/04/29 17:04:43 1.1.1.4 @@ -1,24 +1,33 @@ # # nono -# Copyright (C) 2019 isaki@NetBSD.org +# Copyright (C) 2020 nono project +# Licensed under nono-license.txt +# + # # debugger # -TARGETS= libnndebugger.a +.include "../Makefile.inc" -CPPFLAGS+= -I. -I.. -I../lib -I../m680x0 -I../fpe -I../vm +TARGETS= libnndebugger.a CXXSRCS= \ - consio.cpp \ + branchhistory.cpp \ + console.cpp \ + console_stdio.cpp \ + console_tcp.cpp \ debugger.cpp \ - memdump.cpp \ + debugger_m680x0.cpp \ + debugger_m88xx0.cpp \ + debugger_memory.cpp \ + disasm.cpp \ OBJS= ${CXXSRCS:.cpp=.o} -.include "../Makefile.inc" - libnndebugger.a: ${OBJS} rm -f $@ ${AR} r $@ $> ${RANLIB} $@ + +.include "../Makefile.rule"