Files
remail/Makefile
T
2026-05-02 15:22:27 -04:00

24 lines
293 B
Makefile

#
# Copyright (c) 2026, Chloe Moffett
# Provided under the BSD-3 clause
#
.PHONY: all
all: bin libremail endpoint
.PHONY: bin
bin:
mkdir -p $@
.PHONY: libremail
libremail:
cd libremail/; make
.PHONY: endpoint
endpoint:
cd endpoint/; make
.PHONY: clean
clean:
cd endpoint/; make clean