--- nono/lib/Makefile 2026/04/29 17:04:34 1.1 +++ nono/lib/Makefile 2026/04/29 17:04:54 1.1.1.4 @@ -13,18 +13,21 @@ TARGETS= libnnlib.a CXXSRCS_lib= \ - branchhistory.cpp \ + bitrev.cpp \ config.cpp \ object.cpp \ logger.cpp \ mainapp.cpp \ mappedfile.cpp \ + monitor.cpp \ + monitor_id.cpp \ mystring.cpp \ mythread.cpp \ + perfcounter.cpp \ textscreen.cpp \ CXXSRCS_test= \ - testatomic.cpp \ + test_mystring.cpp \ CXXSRCS= ${CXXSRCS_lib} ${CXXSRCS_test} @@ -35,7 +38,7 @@ libnnlib.a: ${OBJS_lib} ${AR} r $@ $> ${RANLIB} $@ -testatomic: testatomic.o - ${CXX} ${LDFLAGS} -pthread -o $@ $> ${LIBS} +test_mystring: test_mystring.o libnnlib.a + ${CXX} ${LDFLAGS} -o $@ $> ${LIBS} libnnlib.a .include "../Makefile.rule"