1# GNU Mailutils -- a suite of utilities for electronic mail
2# Copyright (C) 2010-2021 Free Software Foundation, Inc.
3#
4# This library is free software; you can redistribute it and/or
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 3 of the License, or (at your option) any later version.
8#
9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12# Lesser General Public License for more details.
13#
14# You should have received a copy of the GNU Lesser General
15# Public License along with this library.  If not, see
16# <http://www.gnu.org/licenses/>.
17
18noinst_LTLIBRARIES = libstring.la
19
20libstring_la_SOURCES = \
21 cpystr.c\
22 cstrcasecmp.c\
23 cstrcasestr.c\
24 cstrescape.c\
25 cstrunescape.c\
26 cstrlower.c\
27 cstrupper.c\
28 expvar.c\
29 hexstr.c\
30 safefilename.c\
31 stpcpy.c\
32 str_to_c.c\
33 strcount.c\
34 strltrim.c\
35 strpref.c\
36 strskip.c\
37 strsuf.c\
38 stripws.c\
39 strlst.c\
40 strrtrim.c\
41 strtosize.c\
42 trueans.c\
43 unfold.c\
44 asnprintf.c\
45 asprintf.c\
46 muctype.c\
47 vasnprintf.c\
48 mkfilename.c\
49 version.c\
50 wordsplit.c\
51 xdecode.c
52
53EXTRA_DIST=to_sn.c to_un.c
54
55AM_CPPFLAGS = \
56 $(MU_LIB_COMMON_INCLUDES)\
57 -I$(srcdir)\
58 -I$(top_srcdir)/libmailutils\
59 -I$(top_srcdir)/libmailutils/wordsplit
60