Files
neochat/tools/Makefile
Carl Schwan 2e42abd7c9 Add emoji model for other language
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2023-09-23 19:39:01 +00:00

11 lines
274 B
Makefile

.PHONY: help update build
.DEFAULT_GOAL := help
update: ## Update sources
@composer update
build: ## Build rules
@./build.php
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-7s\033[0m %s\n", $$1, $$2}'