From 1988a883a0d88a7f281a59f6714c767f41b61c40 Mon Sep 17 00:00:00 2001 From: Ben Limmer Date: Fri, 15 Jun 2018 18:04:07 -0600 Subject: [PATCH] Restore `make manual-install` with warning. (#258) --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 7c46181..0f955d7 100644 --- a/Makefile +++ b/Makefile @@ -59,6 +59,13 @@ symlinks-install: @cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do ln -fs `pwd`/$$f /usr/local/bin/$$f; done @echo 'Done.' +manual-install: + @echo '***************************************************************' + @echo '* DEPRECATED *' + @echo '* `make manual-install` is now called `make symlinks-install` *' + @echo '***************************************************************' + $(MAKE) symlinks-install + copy-install: @echo 'Copying files from ./bin to /usr/local/bin' @cd bin && for f in `find . -type f -iname "*" ! -iname "Makefile"`; do cp `pwd`/$$f /usr/local/bin/$$f; done