summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 6 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 25e2cda..d45757c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-TODAY=1
PREFIX?=/usr/local
BINDIR?=$(PREFIX)/bin
DATADIR?=$(PREFIX)/share
@@ -11,28 +10,22 @@ USERSDIR?=$(LIBDIR)/sysusers.d
all: mirror
%: %.sh
- sed s/@VERSION@/`git rev-list -1 --date=format:%Y%m%d --pretty=%ad --no-commit-header HEAD`.$(TODAY)/g <$< >$@
+ sed s/@VERSION@/`./version`/g <$< >$@
chmod +x $@
clean:
rm -f mirror
install: all
- mkdir -p $(DESTDIR)$(BINDIR)
- mkdir -p $(DESTDIR)$(MANDIR)
- mkdir -p $(DESTDIR)$(SYSDDIR)
- mkdir -p $(DESTDIR)$(USERSDIR)
- cp -f mirror $(DESTDIR)$(BINDIR)/mirror
- cp -f mirror.1 $(DESTDIR)$(MAN1DIR)/mirror.1
- cp -f mirror.timer $(DESTDIR)$(SYSDDIR)/mirror.timer
- cp -f mirror.service $(DESTDIR)$(SYSDDIR)/mirror.service
- cp -f mirror.conf $(DESTDIR)$(USERSDIR)/mirror.conf
+ install -m755 -Dt $(DESTDIR)$(BINDIR) mirror
+ install -m644 -Dt $(DESTDIR)$(MAN1DIR) mirror.1
+ install -m644 -Dt $(DESTDIR)$(SYSDDIR) mirror.{timer,service}
+ install -m644 -Dt $(DESTDIR)$(USERSDIR) mirror.conf
uninstall:
rm -f $(DESTDIR)$(BINDIR)/mirror
rm -f $(DESTDIR)$(MAN1DIR)/mirror.1
- rm -f $(DESTDIR)$(SYSDDIR)/mirror.timer
- rm -f $(DESTDIR)$(SYSDDIR)/mirror.service
+ rm -f $(DESTDIR)$(SYSDDIR)/mirror.{timer,service}
rm -f $(DESTDIR)$(USERSDIR)/mirror.conf
.PHONY: all clean install uninstall