about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2024-01-12 00:30:07 +0100
committerLeah Neukirchen <leah@vuxu.org>2024-01-12 00:30:07 +0100
commita16d6f80c8702268b24d0d37511a1c57bb50c939 (patch)
tree687da7b3eec4dd8b896a745ffa295dd109895ad3 /Makefile
parent43682eb4b5aad74cb2d31ae87651843d489eb602 (diff)
downloadmlog-a16d6f80c8702268b24d0d37511a1c57bb50c939.tar.gz
mlog-a16d6f80c8702268b24d0d37511a1c57bb50c939.tar.xz
mlog-a16d6f80c8702268b24d0d37511a1c57bb50c939.zip
add manpage and README
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 93ef656..35eee5c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,12 @@
-CFLAGS=-O2 -Wall -Wno-unused-parameter -Wextra -Wwrite-strings
-
 ALL=mlog
 
+CFLAGS=-g -O2 -Wall -Wno-unused-parameter -Wextra -Wwrite-strings
+
 all: $(ALL)
 
+README: mlog.1
+	mandoc -Tutf8 $< | col -bx >$@
+
 clean: FRC
 	rm -f $(ALL)