.PHONY: all clean rebuild

all:
	python3 make-executables.py all

clean:
	python3 make-executables.py clean

rebuild: clean all
