-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
35 lines (28 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.DEFAULT_GOAL := help
.DELETE_ON_ERROR:
.SHELLFLAGS := -eu -o pipefail -c
.SUFFIXES:
MAKEFLAGS += --warn-undefined-variables
SHELL := /bin/bash
DOCKER_CMD := USER_ID=$(shell id -u) GROUP_ID=$(shell id -g) docker compose run --rm bbugyi200.zorg
MAKE_CMD := make -f targets.mk
USE_DOCKER_FILE := .lcldev/use-docker
# If .lcldev/use-docker exists, then set `USE_DOCKER` to True
ifneq ("$(wildcard $(USE_DOCKER_FILE))","")
USE_DOCKER := True
endif
ifdef USE_DOCKER
MAKE_CMD := $(DOCKER_CMD) $(MAKE_CMD)
endif
.DEFAULT:
$(MAKE_CMD) $@
.PHONY: use-docker
use-docker: ## Create docker switch file so that subsequent `make` commands run inside docker container.
test -d .lcldev || mkdir .lcldev
touch $(USE_DOCKER_FILE)
.PHONY: remove-docker
remove-docker: ## Remove docker switch file so that subsequent `make` commands run locally.
$(RM) $(USE_DOCKER_FILE)
.PHONY: help
help: ## Print this message.
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' targets.mk $(MAKEFILE_LIST) | sort