1# Copyright (c) 2004,  Theodore A. Roth
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6#
7# * Redistributions of source code must retain the above copyright
8#   notice, this list of conditions and the following disclaimer.
9# * Redistributions in binary form must reproduce the above copyright
10#   notice, this list of conditions and the following disclaimer in
11#   the documentation and/or other materials provided with the
12#   distribution.
13# * Neither the name of the copyright holders nor the names of
14#   contributors may be used to endorse or promote products derived
15#   from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27# POSSIBILITY OF SUCH DAMAGE.
28#
29# $Id: Files.am 1743 2008-08-20 15:27:33Z arcanum $
30#
31
32string_a_c_sources = \
33	strdup.c \
34	strtok.c
35
36string_a_asm_sources = \
37	ffs.S \
38	ffsl.S \
39	ffsll.S \
40	memccpy.S \
41	memchr.S \
42	memcmp.S \
43	memcpy.S \
44	memmem.S \
45	memmem_P.S \
46	memmove.S \
47	memrchr.S \
48	memset.S \
49	strcasecmp.S \
50	strcasestr.S \
51	strcasestr_P.S \
52	strcat.S \
53	strchr.S \
54	strchrnul.S \
55	strcmp.S \
56	strcpy.S \
57	strcspn.S \
58	strlcat.S \
59	strlcpy.S \
60	strlen.S \
61	strlwr.S \
62	strncasecmp.S \
63	strncat.S \
64	strncmp.S \
65	strncpy.S \
66	strnlen.S \
67	strpbrk.S \
68	strrchr.S \
69	strrev.S \
70	strsep.S \
71	strspn.S \
72	strstr.S \
73	strtok_r.S \
74	strupr.S
75
76string_a_extra_dist = \
77	strlcat.c \
78	strlcpy.c
79
80# vim: set ft=make:
81