forked from rabbitmq/rabbitmq-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
73 lines (52 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
SHELL := bash# we want bash behaviour in all shell invocations
RED := $(shell tput setaf 1)
GREEN := $(shell tput setaf 2)
YELLOW := $(shell tput setaf 3)
BOLD := $(shell tput bold)
NORMAL := $(shell tput sgr0)
ifneq (4,$(firstword $(sort $(MAKE_VERSION) 4)))
$(error $(BOLD)$(RED)GNU Make v4 or above is required$(NORMAL). On macOS please install with $(BOLD)brew install make$(NORMAL) and use $(BOLD)gmake$(NORMAL) instead of make)
endif
PLATFORM := $(shell uname)
PYTHON_VERSION := 3
ifeq ($(PLATFORM),Darwin)
OPEN := open
LIBXSLT := /usr/local/opt/libxslt
export PATH := $(LIBXSLT)/bin:$(PATH)
export LDFLAGS := "-L$(LIBXSLT)/lib"
export CPPFLAGS := "-I$(LIBXSLT)/include"
PIPENV := /usr/local/bin/pipenv
endif
ifeq ($(PLATFORM),Linux)
OPEN ?= xdg-open
LIBXSLT ?= /usr/include/libxslt
PIPENV ?= /usr/bin/pipenv
endif
export LC_ALL := en_US.UTF-8
export LANG := en_US.UTF-8
TCP_PORT := 8191
### TARGETS ###
#
.DEFAULT_GOAL = help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'
$(LIBXSLT):
ifeq ($(PLATFORM),Darwin)
@brew install libxslt
endif
$(PIPENV):
ifeq ($(PLATFORM),Darwin)
@brew install pipenv
endif
deps: $(LIBXSLT) $(PIPENV)
$(PIPENV) --python $(PYTHON_VERSION) install
preview: deps ## Preview docs
@$(PIPENV) run preview
browse: ## Open docs in browser
@$(OPEN) http://localhost:$(TCP_PORT)
# noop, required by rabbitmq-public-umbrella clean-subrepos make target
clean:
@
live:
@browser-sync start --proxy http://localhost:$(TCP_PORT) --files site --no-notify --no-open || \
(echo "See $(BOLD)https://www.browsersync.io/$(NORMAL) for more info" && exit 1)