aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-26 18:43:49 -0600
committerCraig Jennings <c@cjennings.net>2026-01-26 18:43:49 -0600
commitf72a0c6beb11223d44233481775177befa846730 (patch)
tree1e0a6b0a51409a18cc7abc1853b0e8d433c03951
parent239536ce0722c2da81760a223e5bd526fcc67184 (diff)
downloadarchangel-f72a0c6beb11223d44233481775177befa846730.tar.gz
archangel-f72a0c6beb11223d44233481775177befa846730.zip
chore: remove redundant help target
Usage info already documented in header comment.
-rw-r--r--Makefile16
1 files changed, 1 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 4a0718a..c8dc277 100644
--- a/Makefile
+++ b/Makefile
@@ -12,25 +12,11 @@
#
# Test configurations are in scripts/test-configs/
-.PHONY: all test test-unit test-install build release clean lint help
+.PHONY: all test test-unit test-install build release clean lint
# Default target
all: test build
-help:
- @echo "archzfs Makefile targets:"
- @echo ""
- @echo " make - Run all tests and build ISO"
- @echo " make test - Run all tests (unit + integration)"
- @echo " make test-unit - Run unit tests only (fast)"
- @echo " make test-install - Run VM install tests (slow)"
- @echo " make build - Build the ISO (requires sudo)"
- @echo " make release - Full test + build + deploy ISO"
- @echo " make clean - Remove build artifacts"
- @echo " make lint - Run shellcheck on all scripts"
- @echo ""
- @echo "Test configs are in scripts/test-configs/"
-
# Unit tests (fast, no VM needed)
test-unit:
@echo "==> Running unit tests..."