mirror of
https://github.com/arzzen/git-quick-stats.git
synced 2026-09-10 07:36:19 -04:00
16 lines
276 B
Makefile
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) |