diff options
author | Malfurious <m@lfurio.us> | 2021-03-24 05:14:45 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-03-24 05:14:45 -0400 |
commit | 46b53e3251aa488dd43d90c6e8457437a0c08b34 (patch) | |
tree | b0d7cc919869213ef50f718c5ddbfa3fddd4323f /Makefile | |
parent | 82c412c58081aa57197c2270bb544d790f35ffae (diff) | |
parent | 5843144165acfacef93ca5d6e2a561a5cf6059dc (diff) | |
download | git-sonar-46b53e3251aa488dd43d90c6e8457437a0c08b34.tar.gz git-sonar-46b53e3251aa488dd43d90c6e8457437a0c08b34.zip |
Merge branch 'rebranding'v0.7
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 |