92de3cdebb
Signed-off-by: Ian Moffett <ian@mirocom.org>
30 lines
388 B
Makefile
30 lines
388 B
Makefile
#
|
|
# Copyright (c) 2026, Chloe Moffett
|
|
# Provided under the BSD-3 clause
|
|
#
|
|
|
|
.PHONY: all
|
|
all: bin libremail tools endpoint
|
|
|
|
.PHONY: bin
|
|
bin:
|
|
mkdir -p $@
|
|
|
|
.PHONY: libremail
|
|
libremail:
|
|
cd libremail/; make
|
|
|
|
.PHONY: tools
|
|
tools:
|
|
cd tools/; make
|
|
|
|
.PHONY: endpoint
|
|
endpoint:
|
|
cd endpoint/; make
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
cd endpoint/; make clean
|
|
cd libremail/; make clean
|
|
cd tools/; make clean
|