1all: write read 2 3write: 4 gcc write.c -o write 5 6read: 7 gcc read.c -o read 8 9clean: 10 -rm write 11 12tags: 13 ctags -R *