From e4fcf7471a1319fee99d68de729aaacfeb044d01 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 19 Feb 2026 00:13:27 +0300 Subject: Rename sub-Makefiles into build.mk So now it is impossible to accidentally start from the wrong place, and this structure also implicitly tells you how to build --- src/tool/Makefile | 4 ---- src/tool/build.mk | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 src/tool/Makefile create mode 100644 src/tool/build.mk (limited to 'src/tool') diff --git a/src/tool/Makefile b/src/tool/Makefile deleted file mode 100644 index a60eceee..00000000 --- a/src/tool/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -OBJS.tool += src/tool/tool.o - -src/tool/libngtool.a: ${OBJS.tool} - ar rcs src/tool/libngtool.a ${OBJS.tool} diff --git a/src/tool/build.mk b/src/tool/build.mk new file mode 100644 index 00000000..a60eceee --- /dev/null +++ b/src/tool/build.mk @@ -0,0 +1,4 @@ +OBJS.tool += src/tool/tool.o + +src/tool/libngtool.a: ${OBJS.tool} + ar rcs src/tool/libngtool.a ${OBJS.tool} -- cgit 1.4.1