-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.mk
56 lines (30 loc) · 839 Bytes
/
common.mk
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
MAKE=make
PYTEST=pytest
COVERAGE=coverage run -m
OS := $(shell uname)
PYTHON=python3
PIP :=pip3
MAGEN_HELPER=../lib/magen_helper
include $(MAGEN_HELPER)/make_common/package_common.mk
include $(MAGEN_HELPER)/make_common/docker_common.mk
include $(MAGEN_HELPER)/make_common/doc_common.mk
default: common_default
clean: common_clean
test: common_test
package: common_package
install: common_install
uninstall: common_uninstall
all: common_all
list: common_list
update: common_update
test_docker: common_test_docker
stop_docker: common_stop_docker
clean_docker: common_clean_docker
rm_docker: common_rm_docker
test_travis: common_test_travis
upload: common_upload
run_unit_test: common_run_unit_test
pre_test: common_pre_test
coverage_report: common_coverage_report
doc: common_doc_api common_doc
check: common_check