ico-sxiv

View the individual entries of an ICO file in sxiv ⏺️

Commit
a094ca95cc0857526b7f9c37e2d998041de0a25d
Parent
26d1cda834e7b63a399599ed35c412939932846b
Author
Pablo <pablo-escobar@riseup.net>
Date

Added a Makefile

Diffstat

1 file changed, 10 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Added Makefile 10 10 0
diff --git a/Makefile b/Makefile
@@ -0,0 +1,10 @@
+.PHONY: install
+
+BIN_TARGET ?= $$HOME/.local/bin
+MAN_TARGET ?= $$HOME/.local/share/man/man1
+
+install: ico-sxiv ico-sxiv.1
+	install -m 700 ico-sxiv   "$(BIN_TARGET)/"
+	install -m 600 ico-sxiv.1 "$(MAN_TARGET)/"
+	gzip "$(MAN_TARGET)/ico-sxiv.1"
+