all: buffered_input_output

buffered_input_output: buffered_input_output.c
	gcc -Wall -o buffered_input_output buffered_input_output.c

clean_all:
	rm -f buffered_input_output
	
