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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
# This file is part of GNU Mailutils.
# Copyright (C) 2010-2025 Free Software Foundation, Inc.
#
# GNU Mailutils 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, or (at
# your option) any later version.
#
# GNU Mailutils 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 GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
include $(top_srcdir)/testsuite/testsuite.am
AUTOTEST_INCLUDES += -I $(top_srcdir)/libmailutils/wordsplit
## -------------------------- ##
## Non-installable programs
## -------------------------- ##
AM_CPPFLAGS = $(MU_LIB_COMMON_INCLUDES)
noinst_LTLIBRARIES = libmu_tesh.la
libmu_tesh_la_SOURCES = tesh.c tesh.h
noinst_PROGRAMS = \
addr\
cidr\
conttype\
ctm\
debugspec\
decode2047\
dump\
encode2047\
exp\
fltst\
fltcnt\
fsaf\
fsaftomod\
fsfolder\
globtest\
hdrcpy\
imapio\
lck\
listop\
listsort\
linetrack\
logstr\
mailcap\
mcf\
mimehdr\
mimeitr\
modtofsaf\
msgset\
modmesg\
parseopt\
prop\
readmesg\
recenv\
scantime\
stream-getdelim\
strftime\
strin\
strout\
strtoc\
t-rdcache\
t0-stream\
t1-stream\
t-streamshift\
tempfile\
temp_stream\
tcli\
tocrlf\
url-comp\
url-parse\
vexp\
wicket\
wordwrap\
wsp\
xscript
fsfolder_LDADD = libmu_tesh.la $(LDADD)
linetrack_LDADD = libmu_tesh.la $(LDADD)
listop_LDADD = libmu_tesh.la $(LDADD)
LDADD = $(MU_LIB_MAILUTILS)
EXTRA_DIST += Encode Decode Wicketfile
TESTSUITE_AT += \
address.at\
base64d.at\
base64e.at\
debugspec.at\
decode2047.at\
dot.at\
crlf.at\
crlfdot.at\
ctm.at\
content-type.at\
encode2047.at\
exp.at\
fltcnt.at\
fromflt.at\
fromrd.at\
fsaf.at\
fsaftomod.at\
fsfolder00.at\
fsfolder01.at\
fsfolder02.at\
fsfolder03.at\
fsfolder04.at\
hdrcpy.at\
hdrflt.at\
htmlent.at\
globtest.at\
imapio.at\
inline-comment.at\
linecon.at\
list.at\
linetrack.at\
lock.at\
logstr.at\
mailcap.at\
mimehdr.at\
modmesg.at\
modtofsaf.at\
msgset.at\
parseopt00.at\
parseopt01.at\
parseopt02.at\
parseopt03.at\
parseopt04.at\
parseopt05.at\
parseopt06.at\
parseopt07.at\
parseopt08.at\
parseopt09.at\
parseopt10.at\
parseopt11.at\
parseopt12.at\
parseopt13.at\
parseopt14.at\
parseopt15.at\
parseopt16.at\
parseopt17.at\
parseopt18.at\
parseopt19.at\
parseopt20.at\
parseopt21.at\
parseopt22.at\
parseopt23.at\
parseopt24.at\
parseopt25.at\
parseopt26.at\
parseopt27.at\
parseopt28.at\
parseopt_help00.at\
parseopt_help01.at\
parseopt_help02.at\
parseopt_help03.at\
parseopt_help04.at\
parseopt_help05.at\
parseopt_help06.at\
parseopt_help07.at\
parseopt_help08.at\
parseopt_help09.at\
parseopt_help10.at\
parseopt_help11.at\
parseopt_help12.at\
prop.at\
readmesg.at\
recenv.at\
scantime.at\
strftime.at\
streams.at\
strerr.at\
strin.at\
strout.at\
url.at\
url-comp.at\
xml.at\
wicket.at\
wordwrap00.at\
wordwrap01.at\
wordwrap02.at\
wordwrap03.at\
xscript.at
# ###########################
# Wordsplit testsuite
# ###########################
# The wordsplit-version.h header is to supply the version string to
# wsp and to force it to use the mailutils version of the wordsplit.h
# header.
EXTRA_DIST += wordsplit-version.h
$(srcdir)/wordsplit-version.h: $(top_srcdir)/configure.ac
$(AM_V_GEN){\
if test -e $(top_srcdir)/libmailutils/wordsplit/.git; then \
wsversion=$$(cd $(top_srcdir)/libmailutils/wordsplit; git describe); \
else \
wsversion="unknown"; \
fi;\
echo "#define WORDSPLIT_VERSION \"$$wsversion\"";\
echo '#include <mailutils/wordsplit.h>'; } \
> $(srcdir)/wordsplit-version.h
noinst_PROGRAMS += wsp
wsp_SOURCES =
nodist_wsp_SOURCES = wsp.c
wsp.o: $(srcdir)/wordsplit-version.h
AM_CPPFLAGS += -DHAVE_WORDSPLIT_VERSION_H
VPATH += $(top_srcdir)/libmailutils/wordsplit
|