aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-03-24 02:39:23 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-03-28 03:15:27 +0200
commitfa97b1904c72c184b09c627c7ccab0d0db4a060c (patch)
tree917ec45c58dd1c55caa96aef6133a19ba68ab453 /doc
parent30d31e8c9d98b5641954207a909b531d9fc922c5 (diff)
downloadslcl-imagemagick.tar.gz
WIP thumbnail stuffimagemagick
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 0000000..ca581a3
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,14 @@
+.POSIX:
+
+DOCS1 = \
+ man1/slcl.1 \
+ man1/usergen.1
+
+DOCSPREFIX=$(PREFIX)/share/man
+DOCS1PREFIX=$(DOCSPREFIX)/man1
+
+install: $(DOCS1)
+ test $(PREFIX) || (echo Please define PREFIX. >&2 ; exit 1)
+ mkdir -p $(DOCS1PREFIX)
+ cp $(DOCS1) $(DOCS1PREFIX)
+ for d in $(DOCS1); do chmod 0644 $(DOCSPREFIX)/$$d; done