CC = gcc ARGS = -Wall all: tiny tiny: tiny.c $(CC) $(ARGS) -o tiny tiny.c tinytar: tar cvf - * >tiny.tar clean: rm -f *.o tiny *~