tools: Add mailutil groundwork

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-05-02 22:52:03 -04:00
parent 7892ac5bd3
commit 92de3cdebb
4 changed files with 212 additions and 1 deletions
+6 -1
View File
@@ -4,7 +4,7 @@
#
.PHONY: all
all: bin libremail endpoint
all: bin libremail tools endpoint
.PHONY: bin
bin:
@@ -14,6 +14,10 @@ bin:
libremail:
cd libremail/; make
.PHONY: tools
tools:
cd tools/; make
.PHONY: endpoint
endpoint:
cd endpoint/; make
@@ -22,3 +26,4 @@ endpoint:
clean:
cd endpoint/; make clean
cd libremail/; make clean
cd tools/; make clean