From 715dac62c941f1757a389d2c3dca9aade6b742ea Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 28 Dec 2010 13:46:07 +0000 Subject: Adding initial options processing (not hooked into parse yet). This is more or less copied from tbl.bsd.lv and still needs integration with the general mandoc framework, e.g., with error messages. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 129930bc..04bfc9af 100644 --- a/Makefile +++ b/Makefile @@ -31,11 +31,11 @@ CFLAGS += -g $(WFLAGS) $(VFLAGS) -DHAVE_CONFIG_H LINTFLAGS += $(VFLAGS) -ROFFLNS = roff.ln tbl.ln +ROFFLNS = roff.ln tbl.ln tbl_opts.ln -ROFFSRCS = roff.c tbl.c +ROFFSRCS = roff.c tbl.c tbl_opts.c -ROFFOBJS = roff.o tbl.o +ROFFOBJS = roff.o tbl.o tbl_opts.o MANDOCLNS = mandoc.ln -- cgit