about summary refs log tree commit diff
path: root/Makefile
blob: 35eee5cefd27e7054601f8339b4b236f72b1c168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)

FRC: