This commit is contained in:
Jay Phelps 2016-02-05 17:27:56 -08:00
commit a9b46e4e09
3 changed files with 35 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
prefix=/usr/local
# files that need mode 755
EXEC_FILES =git-blame-someone-else
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)