.PHONY: all clean distclean
EXEC=timeout
CFLAGS=-Wall -O9
all: ${EXEC}
timeout: timeout.o
clean:
	rm -f *.o
distclean: clean
	rm -f ${EXEC}
