1# Copyright (c) 2004,2008,2009  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 1961 2009-05-24 06:10:27Z dmix $
30#
31
32libm_a_c_sources =
33
34libm_a_asm_sources = \
35	acos.S \
36	addsf3.S \
37	addsf3x.S \
38	asin.S \
39	atan2.S \
40	atan.S \
41	cbrt.S \
42	ceil.S \
43	cmpsf2.S \
44	copysign.S \
45	cosh.S \
46	cos.S \
47	divsf3.S \
48	divsf3x.S \
49	exp.S \
50	fixsfdi.S \
51	fixsfsi.S \
52	fixunssfsi.S \
53	floatdisf.S \
54	floatsisf.S \
55	floatundisf.S \
56	fdim.S \
57	floor.S \
58	fma.S \
59	fmax.S \
60	fmin.S \
61	fmod.S \
62	fp_arccos.S \
63	fp_cmp.S \
64	fp_inf.S \
65	fp_mintl.S \
66	fp_mpack.S \
67	fp_nan.S \
68	fp_negdi.S \
69	fp_norm2.S \
70	fp_powser.S \
71	fp_powsodd.S \
72	fp_pscA.S \
73	fp_pscB.S \
74	fp_rempio2.S \
75	fp_round.S \
76	fp_sinus.S \
77	fp_split3.S \
78	fp_trunc.S \
79	fp_zero.S \
80	frexp.S \
81	gesf2.S \
82	hypot.S \
83	inverse.S \
84	isfinite.S \
85	isinf.S \
86	isnan.S \
87	ldexp.S \
88	log10.S \
89	log.S \
90	lrint.S \
91	lround.S \
92	modf.S \
93	mulsf3.S \
94	mulsf3x.S \
95	negsf2.S \
96	pow.S \
97	round.S \
98	signbit.S \
99	sinh.S \
100	sin.S \
101	sqrt.S \
102	square.S \
103	tanh.S \
104	tan.S \
105	trunc.S \
106	unordsf2.S
107
108libm_a_extra_dist = \
109	asmdef.h \
110	fp32def.h \
111	ntz.h
112
113# vim: set ft=make:
114