Files
remail/Makefile
T
chloe a59521f040 build: Add clean target
Signed-off-by: Ian Moffett <ian@mirocom.org>
2026-05-02 01:14:17 -04:00

20 lines
232 B
Makefile

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