#
# 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