summaryrefslogtreecommitdiffstats
path: root/src/preproc/tbl/tbl.am
blob: d4b0edb57ed050b9c14c6a6cc32005cfd8d8c1a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright (C) 2014-2020 Free Software Foundation, Inc.
#
# This file is part of groff.
#
# groff is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# groff is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

prefixexecbin_PROGRAMS += tbl
tbl_LDADD = libgroff.a $(LIBM) lib/libgnu.a
tbl_SOURCES = \
  src/preproc/tbl/main.cpp \
  src/preproc/tbl/table.cpp \
  src/preproc/tbl/table.h
PREFIXMAN1 += src/preproc/tbl/tbl.1
EXTRA_DIST += src/preproc/tbl/tbl.1.man

tbl_TESTS = \
  src/preproc/tbl/tests/boxes-and-vertical-rules.sh \
  src/preproc/tbl/tests/check-horizontal-line-length.sh \
  src/preproc/tbl/tests/check-line-intersections.sh \
  src/preproc/tbl/tests/check-vertical-line-length.sh \
  src/preproc/tbl/tests/cooperate-with-nm-request.sh \
  src/preproc/tbl/tests/count-continued-input-lines.sh \
  src/preproc/tbl/tests/do-not-overdraw-page-top-in-nroff-mode.sh \
  src/preproc/tbl/tests/do-not-overlap-bottom-border-in-nroff.sh \
  src/preproc/tbl/tests/do-not-segv-on-invalid-vertical-span-entry.sh \
  src/preproc/tbl/tests/do-not-segv-when-backslash-R-in-text-block.sh \
  src/preproc/tbl/tests/expand-region-option-works.sh \
  src/preproc/tbl/tests/format-time-diagnostics-work.sh \
  src/preproc/tbl/tests/save-and-restore-hyphenation-parameters.sh \
  src/preproc/tbl/tests/save-and-restore-inter-sentence-space.sh \
  src/preproc/tbl/tests/save-and-restore-line-numbering.sh \
  src/preproc/tbl/tests/save-and-restore-tab-stops.sh \
  src/preproc/tbl/tests/warn-on-long-boxed-unkept-table.sh \
  src/preproc/tbl/tests/x-column-modifier-works.sh
TESTS += $(tbl_TESTS)
EXTRA_DIST += $(tbl_TESTS)


# Local Variables:
# fill-column: 72
# mode: makefile-automake
# End:
# vim: set autoindent filetype=automake textwidth=72: