diff options
author | Malfurious <m@lfurio.us> | 2021-03-24 04:56:02 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-03-24 04:56:02 -0400 |
commit | b3ba62d18900b3f04f13c26480e91ecfc4e49db7 (patch) | |
tree | f64732294dbc2e9a73546da545099e09c8a63b32 /Makefile | |
parent | 82c412c58081aa57197c2270bb544d790f35ffae (diff) | |
download | git-sonar-b3ba62d18900b3f04f13c26480e91ecfc4e49db7.tar.gz git-sonar-b3ba62d18900b3f04f13c26480e91ecfc4e49db7.zip |
Update references to project name to git-sonar
Signed-off-by: Malfurious <m@lfurio.us>
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 |