about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Makefile23
2 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..af43d4e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+config.mk
+imbox
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..312c579
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,23 @@
+PREFIX = /usr/local
+MANDIR = ${PREFIX}/share/man
+LIBRESSL_PREFIX = /usr/local
+
+CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
+CFLAGS += ${LIBRESSL_PREFIX:%=-I%/include}
+LDFLAGS += ${LIBRESSL_PREFIX:%=-L%/lib}
+LDLIBS = -ltls
+
+-include config.mk
+
+imbox:
+
+clean:
+	rm -f imbox
+
+install: imbox imbox.1
+	install -d ${PREFIX}/bin ${MANDIR}/man1
+	install imbox ${PREFIX}/bin
+	gzip -c imbox.1 > ${MANDIR}/man1/imbox.1.gz
+
+uninstall:
+	rm -f ${PREFIX}/bin/imbox ${MANDIR}/man1/imbox.1.gz
gheader'>2018-09-18Refactor reads in pngo and clear palette between filesJune McEnroe 2018-09-17Add tRNS support to pngoJune McEnroe 2018-09-11Move gfx man pages to gfx/manJune McEnroe 2018-09-11Move bin man pages to bin/manJune McEnroe 2018-09-11Rewrite gfx.7 and render plaintext READMEJune McEnroe 2018-09-11Remove GAMES from BINSJune McEnroe 2018-09-11Rewrite bin.7 and render to plaintext READMEJune McEnroe 2018-09-11Add "blank" lines to man pagesJune McEnroe 2018-09-10Add mdoc syntax fileJune McEnroe 2018-09-08Fix Nm usage in multi-name man pagesJune McEnroe 2018-09-08Put real dates on man pagesJune McEnroe 2018-09-08Replace gfx README with REAMDE.7June McEnroe 2018-09-08Link gfx man pages in ~/.localJune McEnroe