summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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