aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-04-08 23:58:37 -0700
committerBruce Hill <bruce@bruce-hill.com>2020-04-08 23:58:37 -0700
commite0a30fe02bf1c75ebd211dd8f3defa6241c5b82b (patch)
treee7bc00e607ba762ade236865ab6b6dcbee421133 /Makefile
parentadcb0a43e02cd34a289fd66f290d87f9ac91197c (diff)
Some overhaul and refactoring. bbstartup.sh and bindings.bb have been
moved into scripts/bbstartup and scripts/bbbindkeys alongside the other scripts. Some minor bugs have been fixed as well, and a few bindings added.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7eb39b5..04ab040 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ install: $(NAME)
[ ! "$$prefix" ] && prefix="/usr/local"; \
[ ! "$$sysconfdir" ] && sysconfdir=/etc; \
mkdir -pv -m 755 "$$prefix/share/man/man1" "$$prefix/bin" "$$sysconfdir/xdg/bb" \
- && cp -rv bindings.bb scripts/* "$$sysconfdir/xdg/bb/" \
+ && cp -rv scripts/* "$$sysconfdir/xdg/bb/" \
&& cp -v bb.1 bbcmd.1 "$$prefix/share/man/man1/" \
&& rm -f "$$prefix/bin/$(NAME)" \
&& cp -v $(NAME) "$$prefix/bin/"
@@ -42,3 +42,4 @@ uninstall:
rm -rvf "$$prefix/bin/$(NAME)" "$$prefix/share/man/man1/bb.1" "$$prefix/share/man/man1/bbcmd.1" "$$sysconfdir/xdg/bb"; \
printf "\033[1mIf you created any config files in ~/.config/bb, you may want to delete them manually.\033[0m\n"
+.PHONY: all, clean, install, uninstall