Files

30 lines
388 B
Makefile
Raw Permalink Normal View History

2026-05-02 01:10:56 -04:00
#
# Copyright (c) 2026, Chloe Moffett
# Provided under the BSD-3 clause
#
.PHONY: all
2026-05-02 22:52:03 -04:00
all: bin libremail tools endpoint
2026-05-02 01:10:56 -04:00
.PHONY: bin
bin:
mkdir -p $@
2026-05-02 15:22:27 -04:00
.PHONY: libremail
libremail:
cd libremail/; make
2026-05-02 22:52:03 -04:00
.PHONY: tools
tools:
cd tools/; make
2026-05-02 01:10:56 -04:00
.PHONY: endpoint
endpoint:
cd endpoint/; make
2026-05-02 01:14:17 -04:00
.PHONY: clean
clean:
cd endpoint/; make clean
2026-05-02 22:29:32 -04:00
cd libremail/; make clean
2026-05-02 22:52:03 -04:00
cd tools/; make clean