CFLAGS := -Wall

cputime: cputime.c Makefile
	gcc $(CFLAGS) -o cputime cputime.c

clean:
	rm -rf *.o cputime cputime.dSYM
