arzzen.git-quick-stats/Makefile
Lukáš Mešťan 1b384d588b Update Makefile
2017-01-15 19:21:57 +01:00

17 lines
278 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)