summaryrefslogtreecommitdiff
path: root/Makefile
blob: 282ed1add400500cf0a7446664cd83ac9a569859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
files.out.all += systemd-timesyncd-wait systemd-timesyncd-wrap
files.sys.all += /usr/lib/systemd/systemd-timesyncd-wait
files.sys.all += /usr/lib/systemd/systemd-timesyncd-wrap
files.sys.all += /usr/lib/systemd/system/systemd-timesyncd-wait.socket
files.sys.all += /usr/lib/systemd/system/systemd-timesyncd-wait.service
files.sys.all += /usr/lib/systemd/system/systemd-timesyncd.service.d/wait.conf

outdir = .
srcdir = .
all: $(addprefix $(outdir)/,$(files.out.all))
clean:
	rm -f -- $(addprefix $(outdir)/,$(files.out.all))
install: $(addprefix $(DESTDIR),$(files.sys.all))
.PHONY: all clean install

$(outdir)/%: $(srcdir)/%.go
	go build -o $@ $<

$(DESTDIR)/usr/lib/systemd/%: $(outdir)/%
	install -DTm755 $< $@
$(DESTDIR)/usr/lib/systemd/system/%: $(srcdir)/%
	install -DTm644 $< $@
$(DESTDIR)/usr/lib/systemd/system/systemd-timesyncd.service.d/wait.conf: systemd-timesyncd.service.d-wait.conf
	install -DTm644 $< $@