all: unbuffered_input_output

unbuffered_input_output: unbuffered_input_output.c
	gcc -Wall -o unbuffered_input_output unbuffered_input_output.c

clean_all:
	rm -f unbuffered_input_output
	
