diff options
| author | Nakidai <nakidai@disroot.org> | 2026-01-15 14:45:26 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2026-01-15 14:45:26 +0300 |
| commit | 9a2b8cb4fde1adea8027387f277510cfa4406a20 (patch) | |
| tree | 7fe74808b8a86270fb332d8e77a0d0dbf4f8f9bd /src/Makefile | |
| parent | f11b01ccc2c9aa8b20c607da10d7e60dab36efaf (diff) | |
| download | ngircd-9a2b8cb4fde1adea8027387f277510cfa4406a20.tar.gz ngircd-9a2b8cb4fde1adea8027387f277510cfa4406a20.zip | |
Use simpler build system
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
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 {} \; |