From f212c9ef2c9479824308b3a5378e508d13020b46 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 22 Sep 2017 00:36:39 +0200 Subject: initial commit --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..66c15c7 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +# commands +INSTALL := install +LN := ln +MD := markdown +RM := rm +SED := sed + +all: README.html + +%.html: %.md + $(MD) $< > $@ + $(SED) -i 's/\(README[-[:alnum:]]*\).md/\1.html/g' $@ + +install: + $(INSTALL) -D -m0755 bin/pacman-offline $(DESTDIR)/usr/bin/pacman-offline + $(INSTALL) -D -m0644 systemd/pacman-offline.service $(DESTDIR)/usr/lib/systemd/system/pacman-offline.service + $(INSTALL) -D -m0755 systemd/pacman-offline $(DESTDIR)/usr/lib/systemd/scripts/pacman-offline + $(INSTALL) -d -m0755 $(DESTDIR)/usr/lib/systemd/system/system-update.target.wants/ + $(LN) -s ../pacman-offline.service $(DESTDIR)/usr/lib/systemd/system/system-update.target.wants/pacman-offline.service + +clean: + $(RM) -f README.html -- cgit v1.2.3-54-g00ecf