From 9a2b8cb4fde1adea8027387f277510cfa4406a20 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Thu, 15 Jan 2026 14:45:26 +0300 Subject: Use simpler build system --- src/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 00000000..58a5093c --- /dev/null +++ b/src/Makefile @@ -0,0 +1,21 @@ +LIBS += portab/libngportab.a +LIBS += ipaddr/libngipaddr.a +LIBS += tool/libngtool.a + +all: ngircd/ngircd + +ngircd/ngircd: ${LIBS} + make -C ngircd + +portab/libngportab.a: + make -C portab + +ipaddr/libngipaddr.a: + make -C ipaddr + +tool/libngtool.a: + make -C tool + +clean: + rm -f ngircd/ngircd + find . \( -name '*\.o' -o -name '*\.a' \) -exec rm {} \; -- cgit 1.4.1