-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
53 lines (41 loc) · 1.7 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
BUILD = source
DOCS_SRC = docs-src
DOCS = $(DOCS_SRC)/docs
DOCS_OUT = $(DOCS_SRC)/out
API_DOCS = $(BUILD)/api
DOCS_SERVER = "https://api.us.code42.com" # Use this value to run against production api-gateway
#DOCS_SERVER := "http://localhost:5000" # Use this value as the docserver for a locally hosted baldur instance
#DOCS_SERVER := "http://localhost:8080" # Use this value as the docserver for a locally hosted api-gateway instance
BUILD_SCRIPTS = build-scripts
all:: clean docs html locations download transform definitions unify
run:: all serve
clean::
$(BUILD_SCRIPTS)/clean.sh $(DOCS_SRC) $(BUILD) $(DOCS) $(DOCS_OUT)
locations::
$(BUILD_SCRIPTS)/get_open_api_file_locations.sh $(DOCS_SERVER) $(DOCS_SRC)
download::
$(BUILD_SCRIPTS)/download_open_api_files.sh $(DOCS_SRC) $(DOCS)
transform::
$(BUILD_SCRIPTS)/transform.sh $(DOCS)
definitions::
$(BUILD_SCRIPTS)/extract_open_api_paths_and_definitions.sh $(DOCS) $(DOCS_SRC)
unify::
$(BUILD_SCRIPTS)/make_unified_open_api_doc.sh $(DOCS_SRC) $(DOCS_OUT) $(API_DOCS)
html::
bundle exec middleman build
serve::
bundle exec middleman serve
docs::
mdmerge -o source/api/user_guides.rmd \
source/api/user-guides/user_guides.rmd \
source/api/user-guides/release_notes.rmd \
source/api/user-guides/get_started.rmd \
source/api/user-guides/manage_alerts.rmd \
source/api/user-guides/manage_cases.rmd \
source/api/user-guides/manage_actors.rmd \
source/api/user-guides/manage_users.rmd \
source/api/user-guides/manage_watchlists.rmd \
source/api/user-guides/search_file_events.rmd \
source/api/user-guides/use_case_alerts.rmd \
source/api/user-guides/use_case_high_risk_employee.rmd
.PHONY:: all clean locations download transform definitions unify html serve docs