all:
	gcc -std=c23 -g -O0 -Wall -Werror *.c -o ccc
clean:
	rm -f ./ccc *.s *.o *.out **/*.s **/*.o **/*.out
