arzzen.git-quick-stats/Makefile
2017-01-15 18:31:22 +01:00

16 lines
276 B
Makefile

prefix=/usr/local
# files that need mode 755
EXEC_FILES=git-quick-stats
all:
@echo "usage: make install"
@echo " make uninstall"
install:
install -m 0755 $(EXEC_FILES) $(prefix)/bin
uninstall:
test -d $(prefix)/bin && \
cd $(prefix)/bin && \
rm -f $(EXEC_FILES)