File: Makefile

package info (click to toggle)
html2text 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,144 kB
  • sloc: cpp: 5,891; sh: 5,747; yacc: 891; makefile: 84
file content (37 lines) | stat: -rw-r--r-- 1,280 bytes parent folder | download
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
# Copyright 2020-2023 Fabian Groffen <grobian@gentoo.org>
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 in the file COPYING for more details.

TESTS= \
	   ascii=ordered-list \
	   ascii=unterminated-table \
	   ascii=whitespace-tags \
	   ascii=corrupt-attributes.html \
	   iso-8859-1=dot-in-tag-name \
	   iso-8859-1=hex-entities \
	   iso-8859-1=large-table-gt-no-html-end-tag \
	   utf-8=blockquote-reply \
	   utf-8=bold-utf-8-chars-and-zwnj \
	   utf-8=linked-links-and-email-addresses \
	   utf-8=meta-in-blockquote \
	   utf-8=table-with-border \
	   utf-8=tag-with-colon-attribute \
	   utf-8=unicode-hex-references \
	   utf-8=cid-image-link \
	   utf-8=ifendif \
	   utf-8=style-visibility-hidden \
	   auto=html4meta \
	   auto=html5meta \
	   auto=html4entities \
	   auto=table-misrendering \
	   $(NULL)
check:
	@./runtest.sh $(TESTS)