.PHONY: all clean binaries
all: libs

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

