APPS = reader writer
CFLAGS=-Wall -Werror

all 	: $(APPS)
clean 	:;rm $(APPS) *~ 2> /dev/null || true
