1 Star 5 Fork 0

Git工具集/git-standup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kamran Ahmed 提交于 2020-04-03 17:07 +08:00 . Add linting and formatting
PREFIX ?= /usr/local
EXEC_PREFIX ?= $(PREFIX)
BINDIR ?= $(EXEC_PREFIX)/bin
DATAROOTDIR ?= $(PREFIX)/share
DATADIR ?= $(DATAROOTDIR)
MANDIR ?= $(DATAROOTDIR)/man
# files that need mode 755
EXEC_FILES = git-standup
.PHONY: check all install uninstall shellcheck shfmt
all:
@echo "usage: make install"
@echo " make uninstall"
install:
mkdir -p $(BINDIR)
install -m 0755 $(EXEC_FILES) $(BINDIR)
uninstall:
test -d $(BINDIR) && \
cd $(BINDIR) && \
rm -f $(EXEC_FILES)
check: shellcheck shfmt
shellcheck:
./actions/shellcheck
shfmt:
./actions/shfmt
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/vcs-all-in-one/git-standup.git
git@gitee.com:vcs-all-in-one/git-standup.git
vcs-all-in-one
git-standup
git-standup
master

搜索帮助