all: write read

write:
	gcc write.c -o write

read:
	gcc read.c -o read

clean:
	-rm write

tags:
	ctags -R *
