about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
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)