Skip to content

Commit

Permalink
👍 Update install method (cp → mv the binaries)
Browse files Browse the repository at this point in the history
  • Loading branch information
astropenguin committed May 3, 2019
1 parent ffebcee commit 4b85522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ build: $(RADEX_1) $(RADEX_2) $(RADEX_3)
.PHONY: install
install: build
mkdir -p $(HOME_BINDIR)
cp $(RADEX_1) $(HOME_BINDIR)
cp $(RADEX_2) $(HOME_BINDIR)
cp $(RADEX_3) $(HOME_BINDIR)
mv $(RADEX_1) $(HOME_BINDIR)
mv $(RADEX_2) $(HOME_BINDIR)
mv $(RADEX_3) $(HOME_BINDIR)
ln -sf $(HOME_BINDIR)/$(RADEX_1) $(USR_BINDIR)
ln -sf $(HOME_BINDIR)/$(RADEX_2) $(USR_BINDIR)
ln -sf $(HOME_BINDIR)/$(RADEX_3) $(USR_BINDIR)
Expand Down

0 comments on commit 4b85522

Please sign in to comment.