From 1ca52ae8519aadb8ba42f4a7af2b0f13ac6e01ff Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sat, 10 Oct 2020 20:15:01 +0200 Subject: Makefile neu --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..482c429 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +DESTDIR = +BINDIR = /usr/bin +LIBDIR = /usr/lib + +VERSION = 0.0 + +all: reboot-if-no-net-connection + +%: %.in + sed " \ + s/#VERSION#/$(VERSION)/; \ + " $< > $@ + [ "$@" = "reboot-if-no-net-connection" ] && chmod +x "$@" || true + +.PHONY: install + +install: all + install -D -m0755 -t $(DESTDIR)$(BINDIR) reboot-if-no-net-connection + install -D -m0644 -t $(DESTDIR)$(LIBDIR)/systemd/system reboot-if-no-net-connection.service reboot-if-no-net-connection.timer -- cgit v1.2.3-54-g00ecf