blob: ff2f4665c972f365b2eeb7a4640f9b384041521b (
plain)
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
|
# gfold
# https://nickgerace.dev
#
# Note: this Makefile is not required to work with this repository.
# It is an optional helper.
MAKEPATH:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
NAME:=gfold
VERSION:=0.6.2
all: build
run:
@cd $(MAKEPATH); cargo run -- ..
run-recursive:
@cd $(MAKEPATH); cargo run -- .. -r
install:
cargo install --git https://github.com/nickgerace/gfold --tag $(VERSION)
install-local:
cargo install --path $(MAKEPATH)
build: pre-build
cd $(MAKEPATH); cargo build
build-release: pre-build
cd $(MAKEPATH); cargo build --release
pre-build:
cd $(MAKEPATH); cargo update
cd $(MAKEPATH); cargo fmt
cd $(MAKEPATH); cargo clippy
cd $(MAKEPATH); cargo test
doc:
cd $(MAKEPATH); cargo doc --open
tag:
cd $(MAKEPATH); git tag $(VERSION)
cd $(MAKEPATH); git push --tags origin main
fixme:
@cd $(MAKEPATH); grep -r \
--exclude-dir={target,.git} \
--exclude=Cargo.lock \
--exclude=CHANGELOG.md \
--color=always \
FIXME $(MAKEPATH)
release:
@printf "[1] Change version at the following locations...\n"
@printf " Makefile:\n $(shell grep $(VERSION) $(MAKEPATH)/Makefile)\n"
@printf " CHANGELOG.md:\n $(shell grep $(VERSION) $(MAKEPATH)/CHANGELOG.md)\n"
@printf " Cargo.toml:\n $(shell grep $(VERSION) $(MAKEPATH)/Cargo.toml)\n"
@printf "[2] Uncomment the unreleased string in CHANGELOG.md...\n"
@printf " <!--The latest version contains all changes.-->\n"
@printf "[3] Run the following command to check documentation...\n"
@printf " cargo doc --open\n"
@printf "[4] Then, run the following command...\n"
@printf " time make build-release\n"
|