aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-19 12:25:24 -0500
committerCraig Jennings <c@cjennings.net>2026-04-19 12:25:24 -0500
commit4beb93e4e774fc40d0c752973dc8744a06f0f2ff (patch)
tree74da1c4d54488d575a7da7861999117f631a0d46
parent1172e4ef1e2d5dbcf2274820ca7759e3aa54b6c6 (diff)
downloaddotemacs-4beb93e4e774fc40d0c752973dc8744a06f0f2ff.tar.gz
dotemacs-4beb93e4e774fc40d0c752973dc8744a06f0f2ff.zip
chore: remove install-hooks target, rulesets install handles it
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index a517c094..d85a290b 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,7 @@ EMACS_TEST = $(EMACS_BATCH) -L $(TEST_DIR) -L $(MODULE_DIR)
.PHONY: help targets test test-all test-unit test-integration test-file test-name \
validate-parens validate-modules compile lint profile \
- clean clean-compiled clean-tests reset install-hooks
+ clean clean-compiled clean-tests reset
# Alias for help
targets: help
@@ -70,7 +70,6 @@ help:
@echo " make clean-compiled - Remove .elc/.eln files only"
@echo " make clean-tests - Remove test artifacts only"
@echo " make reset - Reset to first launch (DESTRUCTIVE!)"
- @echo " make install-hooks - Activate tracked git hooks (githooks/)"
@echo ""
@echo "Examples:"
@echo " make test-file FILE=test-custom-buffer-file-copy-whole-buffer.el"
@@ -366,11 +365,3 @@ reset:
@find $(EMACS_HOME) -name "*.eln" -type f -delete
@find $(EMACS_HOME) -name "*.elc" -type f -delete
@echo "✓ Reset complete"
-
-install-hooks:
- @echo "Activating tracked git hooks from githooks/..."
- @git config core.hooksPath githooks
- @chmod +x githooks/* 2>/dev/null || true
- @echo "✓ core.hooksPath set to githooks/"
- @echo " Active hooks:"
- @ls -1 githooks/ 2>/dev/null | grep -v '\.md$$' | sed 's/^/ /'