diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-28 13:46:07 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-28 13:46:07 +0000 |
commit | 715dac62c941f1757a389d2c3dca9aade6b742ea (patch) | |
tree | fb3256c0ddfeac539bc450ffaaceb79c72f69c1c /Makefile | |
parent | b7a413d6e95970beaca4b47cedb9aa482b3b9e2a (diff) | |
download | mandoc-715dac62c941f1757a389d2c3dca9aade6b742ea.tar.gz |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |