git-standup
Version:
Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)
25 lines (19 loc) • 458 B
Plain Text
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
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)