-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
69 lines (56 loc) · 2.61 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
# The order is significant - ajv needs referenced schemas to be preceded by referencing schemas
schemas = \
./jsonschema/Source.json \
./jsonschema/Attachment.json \
./jsonschema/Location.json \
./jsonschema/Exception.json \
./jsonschema/SourceReference.json \
./jsonschema/Hook.json \
./jsonschema/GherkinDocument.json \
./jsonschema/Meta.json \
./jsonschema/ParameterType.json \
./jsonschema/ParseError.json \
./jsonschema/Pickle.json \
./jsonschema/StepDefinition.json \
./jsonschema/TestCase.json \
./jsonschema/Timestamp.json \
./jsonschema/TestCaseFinished.json \
./jsonschema/TestCaseStarted.json \
./jsonschema/TestRunFinished.json \
./jsonschema/TestRunStarted.json \
./jsonschema/Duration.json \
./jsonschema/TestStepResult.json \
./jsonschema/TestStepFinished.json \
./jsonschema/TestStepStarted.json \
./jsonschema/TestRunHookFinished.json \
./jsonschema/TestRunHookStarted.json \
./jsonschema/UndefinedParameterType.json \
./jsonschema/Envelope.json
languages = cpp go java javascript perl php ruby dotnet
.DEFAULT_GOAL = help
help: ## Show this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make <target>\n\nWhere <target> is one of:\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
generate-all: generate-code generate-doc ## Generate documentation and code for all supported languages
.PHONY: generate-all
generate-code: $(patsubst %,generate-%,$(languages)) ## Generate code for all supported languages
.PHONY: generate-languages
generate-doc: require-doc messages.md ## Generate markdown documentation using the scripts in ./jsonschema/scripts for the generation
validate: $(schemas) ## Validate the json schemas are valid
npm install
node validate.cjs $(patsubst %, %,$(schemas))
.PHONY: validate-schemas
require-doc: ## Check requirements for the generation of the documentation (ruby is required)
@ruby --version >/dev/null 2>&1 || (echo "ERROR: ruby is required."; exit 1)
clean-doc: ## Remove automatically generated documentation files and related artifacts
rm -f messages.md
clean-all: clean-doc $(patsubst %,clean-%,$(languages)) ## Clean generated documentation and code of all supported languages
.PHONY: clean-all
messages.md: $(schemas) ./codegen/codegen.rb ./codegen/templates/markdown.md.erb ./codegen/templates/markdown.enum.md.erb
ruby ./codegen/codegen.rb Generator::Markdown markdown.md.erb > $@
ruby ./codegen/codegen.rb Generator::Markdown markdown.enum.md.erb >> $@
generate-%: %
cd $< && make generate
.PHONY: generate-%
clean-%: %
cd $< && make clean
.PHONY: clean-%