6cdb9a2a9c
Signed-off-by: Ian Moffett <ian@mirocom.org>
16 lines
184 B
Makefile
16 lines
184 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
|