-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
62 lines (55 loc) · 2.46 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
########################################################################################################################
##
## Makefile - zeichen
##
########################################################################################################################
########################################################################################################################
## Default make action
default: help
@echo
########################################################################################################################
## Builds zeichen.sh
build:
@scripts/make-build.sh
@echo
########################################################################################################################
## Check dependencies
check:
@scripts/make-check.sh
@echo
########################################################################################################################
## Formats all files
format:
@scripts/make-format.sh
@echo
########################################################################################################################
## Prepare for git commit by doing 'make clean format'
git: format
@echo
@echo "==============================================================================="
@echo "== git status"
@echo "==============================================================================="
git status
@echo
########################################################################################################################
## Display help
help:
@echo
@echo "==============================================================================================================="
@echo "== zeichen Make Help"
@echo "==============================================================================================================="
@echo
@echo "Usage:"
@echo " 'make' generates this help information"
@echo " 'make build' builds zeichen.sh, the application"
@echo " 'make check' checks for dependency updates"
@echo " 'make format' formats all files"
@echo " 'make git' prepare for git commit by doing 'make format & git status'"
@echo " 'make help' generates this help information"
@echo " 'make lint' look for source code suggestions"
@echo
########################################################################################################################
## Lint the source code
lint:
@scripts/make-lint.sh
@echo