.PHONY: all clean binaries
all: libs

# Installs libs through the installation function of their module.
libs:
	python AES.py
	python TestU01.py
	python MLDSA.py
	python MLKEM.py

