-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
43 lines (32 loc) · 1.06 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
.PHONY: help clean get-version test bump-version build docs changelog diagrams run-example all
help:
@echo "make help -- show this help"
@echo "make clean -- clean leftovers and build files"
@echo "make get-version -- get current version"
@echo "make test -- run tests"
@echo "make bump-version -- bump version"
@echo "make build -- build python package"
@echo "make docs -- build documentation"
@echo "make changelog -- update changelog"
@echo "make diagrams -- generate diagrams"
@echo "make run-example -- run example script"
@echo "make all -- clean, get-version, test, build"
clean:
./scripts/clean.sh $(MAKEFLAGS)
get-version:
./scripts/get-version.sh
test:
./scripts/test.sh $(MAKEFLAGS)
bump-version:
./scripts/bump-version.sh $(MAKEFLAGS)
build:
./scripts/build.sh $(MAKEFLAGS)
docs:
./scripts/docs.sh $(MAKEFLAGS)
changelog:
./scripts/changelog.sh $(MAKEFLAGS)
diagrams:
./scripts/diagrams.sh $(MAKEFLAGS)
run-example:
python ./examples/simple/main.py
all: clean get-version test build