summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7f6021d9506efe07e497354281003a608e591fe2 (plain)
1
2
3
4
5
6
7
8
9
10
.POSIX:

OBJ = timer
BIN = /usr/local/bin
all: $(OBJ)

timer: timer.c

install: all
	cp $(OBJ) $(BIN)