diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-29 16:44:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-29 16:44:23 +0000 |
commit | e51d77577562e615c4d649d25b45dad6b6e81ac1 (patch) | |
tree | e7a812b4c396352451fed757dfc926b729fdcf1e /Makefile | |
parent | 20a8ad68cff60805c5af1a8fb2d0685e853faf5b (diff) | |
download | mandoc-e51d77577562e615c4d649d25b45dad6b6e81ac1.tar.gz |
Initial check-in of table data-row processing. For the time being, this
parses table data then throws it away immediately. It does not yet try
to cross-check data rows against layout or anything. This copied more
or less completely from tbl.bsd.lv.
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 tbl_opts.ln tbl_layout.ln +ROFFLNS = roff.ln tbl.ln tbl_opts.ln tbl_layout.ln tbl_data.ln -ROFFSRCS = roff.c tbl.c tbl_opts.c tbl_layout.c +ROFFSRCS = roff.c tbl.c tbl_opts.c tbl_layout.c tbl_data.c -ROFFOBJS = roff.o tbl.o tbl_opts.o tbl_layout.o +ROFFOBJS = roff.o tbl.o tbl_opts.o tbl_layout.o tbl_data.o MANDOCLNS = mandoc.ln |