summaryrefslogtreecommitdiff
path: root/Makefile
blob: f88526b4f04c56eb80e348d23b81a4af4e06a374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC ?= gcc
CFLAGS ?= -O2 -pipe
LDFLAGS ?= -s -static
DESTDIR =

.PHONY: all

all: set_time

set_time:
	$(CC) -o $@ $(CFLAGS) $(LDFLAGS) set_time.c

install: set_time
	install -D set_time $(DESTDIR)/sbin/set_time

clean:
	rm -f set_time