Initial skeleton: README, CVE inventory, roadmap, ARCH, ethics + copy_fail_family module absorbed from DIRTYFAIL

This commit is contained in:
2026-05-16 19:26:24 -04:00
commit cf30b249de
45 changed files with 10336 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# IAMROOT top-level Makefile
#
# Phase 0 (current): defers to modules/copy_fail_family/Makefile.
# Phase 1: real dispatcher build that links all modules into one
# binary. See ROADMAP.md.
MODULES := copy_fail_family
.PHONY: all clean $(MODULES)
all: $(MODULES)
$(MODULES):
$(MAKE) -C modules/$@
clean:
@for m in $(MODULES); do \
$(MAKE) -C modules/$$m clean; \
done
rm -rf build/
# Convenience: scan the host using the absorbed DIRTYFAIL-as-module
# until Phase 1's real dispatcher lands.
scan:
@modules/copy_fail_family/dirtyfail --scan 2>/dev/null || \
(echo "Build the copy_fail module first: make copy_fail_family" && exit 1)