summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorWolfgang Hommel <wolf@code-wizards.com>2013-10-03 17:30:12 +0200
committerWolfgang Hommel <wolf@code-wizards.com>2013-10-03 17:30:12 +0200
commitbbd2ee58f26993a5bf526bd2a7ac08da876969dc (patch)
tree4b7df7f2d9c415b40c86f46dc27e5d85bde12ce3 /man
parent9d669f7528bc343754e8ccb808b2597bc28adad6 (diff)
downloadfaketime-ng-bbd2ee58f26993a5bf526bd2a7ac08da876969dc.tar.gz
Makefile for OSX man page installation
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.OSX14
1 files changed, 14 insertions, 0 deletions
diff --git a/man/Makefile.OSX b/man/Makefile.OSX
new file mode 100644
index 0000000..807c157
--- /dev/null
+++ b/man/Makefile.OSX
@@ -0,0 +1,14 @@
+INSTALL ?= install
+
+PREFIX ?= /usr/local
+
+all:
+
+install:
+ $(INSTALL) -Dm0644 faketime.1 "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
+ gzip -f "${DESTDIR}${PREFIX}/share/man/man1/faketime.1"
+
+uninstall:
+ rm -f "${DESTDIR}${PREFIX}/share/man/man1/faketime.1.gz"
+
+.PHONY: all install uninstall