--- nono/hd64180/Makefile 2026/04/29 17:05:18 1.1 +++ nono/hd64180/Makefile 2026/04/29 17:05:47 1.1.1.4 @@ -11,25 +11,26 @@ .include "../Makefile.inc" TARGETS= libnnhd64180.a -.if !defined(NOTEST) +.if !defined(RELEASE) TARGETS+= testdis .endif -CXXSRCS_lib= \ +CXXSRCS= \ hd64180acc.cpp \ hd64180core.cpp \ hd64180disasm.cpp \ + hd647180asci.cpp \ hd647180dev.cpp \ hd647180io.cpp \ CXXSRCS_test= \ testdis.cpp \ -CXXSRCS= ${CXXSRCS_lib} ${CXXSRCS_test} +CXXSRCS_all= ${CXXSRCS} ${CXXSRCS_test} -OBJS_lib= ${CXXSRCS_lib:.cpp=.o} +OBJS= ${CXXSRCS:.cpp=.o} -libnnhd64180.a: ${OBJS_lib} +libnnhd64180.a: ${OBJS} rm -f $@ ${AR} r $@ $> ${RANLIB} $@