mirror of
https://github.com/jayphelps/git-blame-someone-else.git
synced 2025-06-05 03:31:40 +02:00
suchwow
This commit is contained in:
commit
a9b46e4e09
3 changed files with 35 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue