UNPKG

human-time

Version:

show seconds in a human-readable form

13 lines (8 loc) 159 B
CFLAGS = -Wall -Wextra -Werror -std=c99 -pedantic BIN = human all: $(BIN) human: human.c $(CC) $(CFLAGS) -o $@ $^ clean: rm -rf $(BIN) .PHONY: clean all