forked from ruvnet/RuView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (21 loc) · 821 Bytes
/
Makefile
File metadata and controls
26 lines (21 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# WiFi-DensePose Makefile
# ============================================================
.PHONY: verify verify-verbose verify-audit help
# Trust Kill Switch -- one-command proof replay
verify:
@./verify
# Verbose mode -- show detailed feature statistics and Doppler spectrum
verify-verbose:
@./verify --verbose
# Full audit -- verify pipeline + scan codebase for mock/random patterns
verify-audit:
@./verify --verbose --audit
help:
@echo "WiFi-DensePose Build Targets"
@echo "============================================================"
@echo ""
@echo " make verify Run the trust kill switch (proof replay)"
@echo " make verify-verbose Verbose mode with feature details"
@echo " make verify-audit Full verification + codebase audit"
@echo " make help Show this help"
@echo ""