all:
	gcc -O2 -o randchars randchars.c
	gcc -O2 -o randprintable randprintable.c
	gcc -w -o test_speed test_speed.c
	gcc -w -O2 -o match match.c

clean:
	rm randprintable randchars test_speed match
