summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2021-03-24 05:14:45 -0400
committerMalfurious <m@lfurio.us>2021-03-24 05:14:45 -0400
commit46b53e3251aa488dd43d90c6e8457437a0c08b34 (patch)
treeb0d7cc919869213ef50f718c5ddbfa3fddd4323f /Makefile
parent82c412c58081aa57197c2270bb544d790f35ffae (diff)
parent5843144165acfacef93ca5d6e2a561a5cf6059dc (diff)
downloadgit-sonar-0.7.tar.gz
git-sonar-0.7.zip
Merge branch 'rebranding'v0.7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 5e73c9f..7a7e9ec 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
-SOURCES=git-radar radar-base.sh prompt.zsh prompt.bash fetch.sh
+SOURCES=git-sonar sonar-base.sh prompt.zsh prompt.bash fetch.sh
PREFIX=$(HOME)/.local
all:
- @echo 'Simple Install script for *git-radar* '
+ @echo 'Simple Install script for *git-sonar* '
@echo 'For a normal installation for your user only use:'
@echo ' make install'
@echo ''
- @echo 'If you want to install *git-radar* system wide you should change'
+ @echo 'If you want to install *git-sonar* system wide you should change'
@echo 'the prefix'
@echo ''
@echo ' PREFIX=/usr/local/bin make install'
@@ -19,8 +19,8 @@ all:
install: $(SOURCES)
@echo 'Installing in ' $(PREFIX)/bin
- cp git-radar $(PREFIX)/bin
- cp radar-base.sh $(PREFIX)/bin
+ cp git-sonar $(PREFIX)/bin
+ cp sonar-base.sh $(PREFIX)/bin
cp prompt.zsh $(PREFIX)/bin
cp prompt.bash $(PREFIX)/bin
cp fetch.sh $(PREFIX)/bin
@@ -28,8 +28,8 @@ install: $(SOURCES)
develop: $(SOURCES)
@echo 'Symlinking in ' $(PREFIX)/bin
- ln -s $(PWD)/git-radar $(PREFIX)/bin/git-radar
- ln -s $(PWD)/radar-base.sh $(PREFIX)/bin/radar-base.sh
+ ln -s $(PWD)/git-sonar $(PREFIX)/bin/git-sonar
+ ln -s $(PWD)/sonar-base.sh $(PREFIX)/bin/sonar-base.sh
ln -s $(PWD)/prompt.zsh $(PREFIX)/bin/prompt.zsh
ln -s $(PWD)/prompt.bash $(PREFIX)/bin/prompt.bash
ln -s $(PWD)/fetch.sh $(PREFIX)/bin/fetch.sh