forked from HariSekhon/Knowledge-Base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
73 lines (62 loc) · 1.27 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
#
# Author: Hari Sekhon
# Date: 2016-01-17 12:56:53 +0000 (Sun, 17 Jan 2016)
#
# vim:ts=4:sts=4:sw=4:noet
#
# https://github.com/HariSekhon/Knowledge-Base
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback
#
# https://www.linkedin.com/in/HariSekhon
#
ifneq ("$(wildcard bash-tools/Makefile.in)", "")
include bash-tools/Makefile.in
endif
REPO := HariSekhon/Knowledge-Base
CODE_FILES := $(shell git ls-files | grep -E -e '\.md$$' | sort)
.PHONY: build
build: init
@echo ================
@echo Knowledge Builds
@echo ================
@echo
@$(MAKE) git-summary
@echo
@$(MAKE) index
@$(MAKE) mdl
@$(MAKE) references
@echo "All Checks Passed"
.PHONY: mdl
mdl:
@echo "Checking Markdown for issues"
@echo
@mdl *.md
.PHONY: index
index:
@echo "Checking all *.md files are in the README.md index"
@echo
.github/scripts/check_index.sh
@echo
.PHONY: references
references:
@echo "Checking all *.md files references exist"
@echo
.github/scripts/check_markdown_references.sh
@echo
.PHONY: init
init:
@echo
@echo "running init:"
git submodule update --init --recursive
@echo
.PHONY: install
install: build
@:
.PHONY: test
test:
bash-tools/checks/check_all.sh
@echo
.PHONY: clean
clean:
@rm -fv -- *.pyc *.pyo