UNPKG
human-time
Version:
latest (0.0.2)
0.0.2
0.0.1
0.0.0
show seconds in a human-readable form
github.com/bahamas10/human
bahamas10/human
human-time
/
Makefile
13 lines
(8 loc)
•
159 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -Wall -Wextra -Werror -std=c99 -pedantic BIN = human
all:
$(BIN)
human: human.c
$(CC)
$(CFLAGS)
-o
$@
$^
clean:
rm -rf
$(BIN)
.PHONY
: clean all