Files
remail/Makefile
T

25 lines
320 B
Makefile
Raw 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 15:22:27 -04:00
all: bin libremail 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 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