FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cli/Makefile at trunk · igfoo/cli · GitHub
igfoo
/
cli
Public
forked from
cli/cli
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cli
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
65 lines (54 loc) · 1.96 KB
Breadcrumbs
cli
/
Makefile
Copy path
File metadata and controls
65 lines (54 loc) · 1.96 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
BUILD_FILES
=
$(
shell
go list -f '{{range .GoFiles}}{{$$.Dir}}/{{.}}\
{{end}}' ./...)
GH_VERSION
?=
$(
shell
git describe --tags 2>/dev/null || git rev-parse --short HEAD)
DATE_FMT
= +%Y-%m-%d
ifdef
SOURCE_DATE_EPOCH
BUILD_DATE
?=
$(
shell
date -u -d "@
$(
SOURCE_DATE_EPOCH
)
" "
$(
DATE_FMT
)
" 2>/dev/null || date -u -r "
$(
SOURCE_DATE_EPOCH
)
" "
$(
DATE_FMT
)
" 2>/dev/null || date -u "
$(
DATE_FMT
)
")
else
BUILD_DATE
?=
$(
shell
date "
$(
DATE_FMT
)
")
endif
ifndef
CGO_CPPFLAGS
export
CGO_CPPFLAGS
:=
$(
CPPFLAGS
)
endif
ifndef
CGO_CFLAGS
export
CGO_CFLAGS
:=
$(
CFLAGS
)
endif
ifndef
CGO_LDFLAGS
export
CGO_LDFLAGS
:=
$(
LDFLAGS
)
endif
GO_LDFLAGS
:= -X github.com/cli/cli/command.Version=
$(
GH_VERSION
)
$(
GO_LDFLAGS
)
GO_LDFLAGS
:= -X github.com/cli/cli/command.BuildDate=
$(
BUILD_DATE
)
$(
GO_LDFLAGS
)
ifdef
GH_OAUTH_CLIENT_SECRET
GO_LDFLAGS := -X github.com/cli/cli/internal/authflow.oauthClientID=$(GH_OAUTH_CLIENT_ID) $(GO_LDFLAGS)
GO_LDFLAGS := -X github.com/cli/cli/internal/authflow.oauthClientSecret=$(GH_OAUTH_CLIENT_SECRET) $(GO_LDFLAGS)
endif
bin/gh
:
$(
BUILD_FILES
)
@go build -trimpath -ldflags
"
$(
GO_LDFLAGS
)
"
-o
"
$@
"
./cmd/gh
clean
:
rm -rf ./bin ./share
.PHONY
: clean
test
:
go
test
./...
.PHONY
: test
site
:
git clone https://github.com/github/cli.github.com.git
"
$@
"
site-docs
: site
git -C site pull
git -C site rm
'
manual/gh*.md
'
2>
/dev/null
||
true
go run ./cmd/gen-docs --website --doc-path site/manual
for
f
in
site/manual/gh
*
.md
;
do
sed -i.bak -e
'
/^### SEE ALSO/,$$d
'
"
$$
f
"
;
done
rm -f site/manual/
*
.bak
git -C site add
'
manual/gh*.md
'
git -C site commit -m
'
update help docs
'
||
true
.PHONY
: site-docs
site-bump
: site-docs
ifndef
GITHUB_REF
$(error GITHUB_REF is not set)
endif
sed -i.bak -E 's/(assign version = )".+"/\1"$(GITHUB_REF:refs/tags/v%=%)"/' site/index.html
rm -f site/index.html.bak
git -C site commit -m '$(GITHUB_REF:refs/tags/v%=%)' index.html
.PHONY
: site-bump
.PHONY
: manpages
manpages
:
go run ./cmd/gen-docs --man-page --doc-path ./share/man/man1/
Back
|
FazBrowse Home
|
New Git URL