https://github.com/koffie/mdmagma
Tip revision: 2de889c2f67d912388d2de0d84e7323a850c8108 authored by Maarten Derickx on 07 July 2025, 00:24:22 UTC
Document X_1(16) classgroup reproduction in README.md
Document X_1(16) classgroup reproduction in README.md
Tip revision: 2de889c
makefile
COMP_DIRS := $(wildcard computations/*/verify_all.sh)
.PHONY: clean copy_remote test_remote test_computations test_computations_remote $(COMP_DIRS)
clean:
find . -type f -name "*.sig" -delete
copy_remote:
rsync -avz --delete ./ $(ssh):/tmp/mdmagma
test:
cd tests && magma -n v2/test_all.m
test_remote: copy_remote
ssh $(ssh) "cd /tmp/mdmagma && make test"
test_computations_remote: copy_remote
ssh $(ssh) "cd /tmp/mdmagma && make test_computations"
test_computations: $(COMP_DIRS)
$(COMP_DIRS):
cd $(dir $@) && ./verify_all.sh
