|
0
|
1 #========================================================================= |
|
|
2 # |
|
|
3 # makefile |
|
|
4 # |
|
|
5 # language/c/libm/src |
|
|
6 # |
|
|
7 #========================================================================= |
|
|
8 #####COPYRIGHTBEGIN#### |
|
|
9 # |
|
|
10 # ------------------------------------------- |
|
|
11 # The contents of this file are subject to the Cygnus eCos Public License |
|
|
12 # Version 1.0 (the "License"); you may not use this file except in |
|
|
13 # compliance with the License. You may obtain a copy of the License at |
|
|
14 # http://sourceware.cygnus.com/ecos |
|
|
15 # |
|
|
16 # Software distributed under the License is distributed on an "AS IS" |
|
|
17 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the |
|
|
18 # License for the specific language governing rights and limitations under |
|
|
19 # the License. |
|
|
20 # |
|
|
21 # The Original Code is eCos - Embedded Cygnus Operating System, released |
|
|
22 # September 30, 1998. |
|
|
23 # |
|
|
24 # The Initial Developer of the Original Code is Cygnus. Portions created |
|
2
|
25 # by Cygnus are Copyright (C) 1998,1999 Cygnus Solutions. All Rights Reserved. |
|
0
|
26 # ------------------------------------------- |
|
|
27 # |
|
|
28 #####COPYRIGHTEND#### |
|
|
29 #========================================================================= |
|
|
30 |
|
|
31 PACKAGE := libm |
|
|
32 include ../../../../../pkgconf/pkgconf.mak |
|
2
|
33 include ../../../../../pkgconf/system.mak |
|
0
|
34 |
|
|
35 LIBRARY := libtarget.a |
|
|
36 COMPILE := misc/matherr.c misc/standard.c misc/compatmode.cxx \ |
|
|
37 misc/infconst.c \ |
|
|
38 \ |
|
|
39 double/ieee754-core/e_acos.c double/ieee754-core/e_asin.c \ |
|
|
40 double/ieee754-core/e_atan2.c double/ieee754-core/e_cosh.c \ |
|
|
41 double/ieee754-core/e_exp.c double/ieee754-core/e_fmod.c \ |
|
|
42 double/ieee754-core/e_log.c double/ieee754-core/e_log10.c \ |
|
|
43 double/ieee754-core/e_pow.c \ |
|
|
44 double/ieee754-core/e_rem_pio2.c \ |
|
|
45 double/ieee754-core/e_scalb.c double/ieee754-core/e_sinh.c \ |
|
|
46 double/ieee754-core/e_sqrt.c \ |
|
|
47 \ |
|
|
48 double/ieee754-api/w_acos.c double/ieee754-api/w_asin.c \ |
|
|
49 double/ieee754-api/w_atan2.c double/ieee754-api/w_cosh.c \ |
|
|
50 double/ieee754-api/w_exp.c double/ieee754-api/w_fmod.c \ |
|
|
51 double/ieee754-api/w_log.c double/ieee754-api/w_log10.c \ |
|
|
52 double/ieee754-api/w_pow.c double/ieee754-api/w_scalb.c \ |
|
|
53 double/ieee754-api/w_sinh.c double/ieee754-api/w_sqrt.c \ |
|
|
54 \ |
|
|
55 double/internal/k_cos.c double/internal/k_rem_pio2.c \ |
|
|
56 double/internal/k_sin.c double/internal/k_tan.c \ |
|
|
57 \ |
|
|
58 double/portable-api/s_atan.c double/portable-api/s_ceil.c \ |
|
|
59 double/portable-api/s_copysign.c \ |
|
|
60 double/portable-api/s_cos.c double/portable-api/s_expm1.c \ |
|
|
61 double/portable-api/s_fabs.c double/portable-api/s_finite.c\ |
|
|
62 double/portable-api/s_floor.c double/portable-api/s_frexp.c\ |
|
|
63 double/portable-api/s_isnan.c double/portable-api/s_ldexp.c\ |
|
|
64 double/portable-api/s_rint.c double/portable-api/s_scalbn.c\ |
|
|
65 double/portable-api/s_sin.c double/portable-api/s_tan.c \ |
|
|
66 double/portable-api/s_modf.c double/portable-api/s_tanh.c |
|
|
67 |
|
|
68 |
|
|
69 |
|
|
70 OTHER_OBJS := |
|
|
71 OTHER_TARGETS := |
|
|
72 OTHER_CLEAN := |
|
|
73 |
|
|
74 include $(COMPONENT_REPOSITORY)/pkgconf/makrules.src |