aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index bc77a4d..870b0ec 100644
--- a/Makefile
+++ b/Makefile
@@ -8,18 +8,18 @@
# make release - Full test + build + deploy
#
# Manual VM testing:
-# make vm - Boot ISO in a single-disk VM
-# make vm-multi - Boot ISO in a 2-disk VM (mirror/RAID)
-# make vm-multi3 - Boot ISO in a 3-disk VM (raidz1)
-# make vm-boot - Boot from installed disk (after install)
-# make vm-clean - Remove VM disks and OVMF vars
+# make test-vm - Boot ISO in a single-disk VM
+# make test-multi - Boot ISO in a 2-disk VM (mirror/RAID)
+# make test-multi3 - Boot ISO in a 3-disk VM (raidz1)
+# make test-boot - Boot from installed disk (after install)
+# make test-clean - Remove VM disks and OVMF vars
#
# make clean - Clean build artifacts
# make distclean - Clean everything including releases
#
# Test configurations are in scripts/test-configs/
-.PHONY: test test-install build release clean distclean lint vm vm-multi vm-multi3 vm-boot vm-clean
+.PHONY: test test-install test-vm test-multi test-multi3 test-boot test-clean build release clean distclean lint
# Lint all bash scripts
lint:
@@ -54,23 +54,23 @@ release: test test-install
# --- Manual VM testing ---
# Boot ISO in a single-disk VM
-vm:
+test-vm:
./scripts/test-vm.sh
# Boot ISO in a 2-disk VM (for mirror/RAID testing)
-vm-multi:
+test-multi:
./scripts/test-vm.sh --multi-disk
# Boot ISO in a 3-disk VM (for raidz1 testing)
-vm-multi3:
+test-multi3:
./scripts/test-vm.sh --multi-disk=3
# Boot from installed disk (after running install in VM)
-vm-boot:
+test-boot:
./scripts/test-vm.sh --boot-disk
# Remove VM disks and start fresh
-vm-clean:
+test-clean:
./scripts/test-vm.sh --clean
# --- Cleanup ---