-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (16 loc) · 1.07 KB
/
Makefile
File metadata and controls
19 lines (16 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
###############################################################################
# PROLOGUE #
###############################################################################
MAKEFLAGS += --warn-undefined-variables
.DEFAULT_GOAL := help
###############################################################################
# HELP #
###############################################################################
##@ other
.PHONY: help
help: ## Display this help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make <target>\033[36m\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-25s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
###############################################################################
# PROJECT SPECIFIC #
###############################################################################
-include project.mk