synth/alchitry-loader/Makefile

15 lines
403 B
Makefile

export DOCKER_BUILDKIT=1
loader: ## build the loader in docker (linux)
docker build -o . .
.PHONY: clean
clean:
rm -rf loader $(objects)
.PHONY: help
help: ## Show this help
@echo Noteworthy targets:
@egrep '^[a-zA-Z_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help