From e34958af2dbad4fb8c6bf4845279a4e43cd5efe7 Mon Sep 17 00:00:00 2001 From: Zaine Date: Fri, 8 May 2026 16:23:37 +0100 Subject: [PATCH] cleanup --- Makefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Makefile b/Makefile index a7ca4b8..29b2536 100755 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all build json json-2 fast clean norm tests fix-permissions help +.PHONY: all build json json-2 fast clean norm tests help all: clean json build json-2 @@ -30,12 +30,6 @@ tests: @echo "Running all the tests..." emacs -batch -l ert -l tests/macros-tests.el -f ert-run-tests-batch-and-exit -fix-permissions: - echo "shakkal123" | sudo -S chown -R zaine:zaine . - -restore-permissions: - echo "shakkal123" | sudo -S chown -R 33:33 . - help: @echo "Available targets:" @echo " make - Clean, build, and generate search index (default)" @@ -45,6 +39,4 @@ help: @echo " make clean - Remove output directory" @echo " make tests - Run all of the tests associated with the project" @echo " make norm - Move all files that end with ~ to the backup folder" - @echo " make fix-permissions - Fix permissions for the project directory (requires sudo)" - @echo " make restore-permissions - Restore permissions for the project directory (requires sudo)" @echo " make help - Show this help message"