mirror of
https://github.com/jayphelps/git-blame-someone-else.git
synced 2025-05-02 11:35:56 +02:00
16 lines
286 B
Makefile
16 lines
286 B
Makefile
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)
|