generated from HariSekhon/Template-Repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
83 lines (69 loc) · 1.79 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
74
75
76
77
78
79
80
81
82
83
#
# 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/GitHub-Commit-Times-Graph
#
# 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
#
# ===================
# bootstrap commands:
# setup/bootstrap.sh
#
# OR
#
# Alpine:
#
# apk add --no-cache git make && git clone https://github.com/HariSekhon/GitHub-Commit-Times-Graph repo && cd repo && make
#
# Debian / Ubuntu:
#
# apt-get update && apt-get install -y make git && git clone https://github.com/HariSekhon/GitHub-Commit-Times-Graph repo && cd repo && make
#
# RHEL / CentOS:
#
# yum install -y make git && git clone https://github.com/HariSekhon/GitHub-Commit-Times-Graph repo && cd repo && make
# ===================
ifneq ("$(wildcard bash-tools/Makefile.in)", "")
include bash-tools/Makefile.in
endif
REPO := HariSekhon/GitHub-Commit-Times-Graph
CODE_FILES := $(shell git ls-files | grep -E -e '\.sh$$' -e '\.go$$' | sort)
BINARY=github-graph-commit-times
.PHONY: default
default:
go run main.go harisekhon
@#if uname -s | grep -q Darwin; then open graph.png; fi
if uname -s | grep -q Darwin; then open graph.svg; fi
.PHONY: build
build: init
@echo ================================
@echo GitHub-Graph-Commit-Times Build
@echo ================================
@$(MAKE) git-summary
@echo
go build -o "$(BINARY)" main.go
@echo 'BUILD SUCCESSFUL (GitHub-Graph-Commit-Times)'
.PHONY: goupdates
goupdates:
go get -u all
go mod tidy
.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
.PHONY: clean
clean:
rm -fv $(BINARY)