OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libm/] [common/] [Makefile.am] - Blame information for rev 158

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 148 jeremybenn
## Process this file with automake to generate Makefile.in
2
 
3
AUTOMAKE_OPTIONS = cygnus
4
 
5
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
 
7
src =   s_finite.c s_copysign.c s_modf.c s_scalbn.c \
8
        s_cbrt.c s_exp10.c s_expm1.c s_ilogb.c s_infconst.c \
9
        s_infinity.c s_isinf.c s_isinfd.c s_isnan.c s_isnand.c \
10
        s_log1p.c s_nan.c s_nextafter.c s_pow10.c \
11
        s_rint.c s_logb.c s_matherr.c s_lib_ver.c \
12
        s_fdim.c s_fma.c s_fmax.c s_fmin.c s_fpclassify.c s_lrint.c \
13
        s_lround.c s_nearbyint.c s_remquo.c s_round.c s_scalbln.c \
14
        s_signbit.c s_trunc.c
15
 
16
fsrc =  sf_finite.c sf_copysign.c sf_modf.c sf_scalbn.c \
17
        sf_cbrt.c sf_exp10.c sf_expm1.c sf_ilogb.c \
18
        sf_infinity.c sf_isinf.c sf_isinff.c sf_isnan.c sf_isnanf.c \
19
        sf_log1p.c sf_nan.c sf_nextafter.c sf_pow10.c \
20
        sf_rint.c sf_logb.c \
21
        sf_fdim.c sf_fma.c sf_fmax.c sf_fmin.c sf_fpclassify.c sf_lrint.c \
22
        sf_lround.c sf_nearbyint.c sf_remquo.c sf_round.c \
23
        sf_scalbln.c sf_trunc.c
24
 
25
libcommon_la_LDFLAGS = -Xcompiler -nostdlib
26
 
27
if USE_LIBTOOL
28
noinst_LTLIBRARIES = libcommon.la
29
libcommon_la_SOURCES = $(src) $(fsrc)
30
noinst_DATA = objectlist.awk.in
31
else
32
noinst_LIBRARIES = lib.a
33
lib_a_SOURCES = $(src) $(fsrc)
34
lib_a_CFLAGS = $(AM_CFLAGS)
35
noinst_DATA =
36
endif # USE_LIBTOOL
37
 
38
include $(srcdir)/../../Makefile.shared
39
 
40
chobj = scbrt.def scopysign.def sexp10.def sexpm1.def silogb.def \
41
        sinfinity.def sisnan.def slog1p.def smatherr.def smodf.def \
42
        snan.def snextafter.def spow10.def sscalbn.def
43
 
44
SUFFIXES = .def
45
 
46
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
47
 
48
.c.def:
49
        $(CHEW) < $< > $*.def 2> $*.ref
50
        touch stmp-def
51
 
52
TARGETDOC = ../tmp.texi
53
 
54
doc: $(chobj)
55
 
56
CLEANFILES = $(chobj) *.ref
57
 
58
# Texinfo does not appear to support underscores in file names, so we
59
# name the .def files without underscores.
60
 
61
scopysign.def: s_copysign.c
62
        $(CHEW) < $(srcdir)/s_copysign.c >$@ 2>/dev/null
63
        touch stmp-def
64
 
65
scbrt.def: s_cbrt.c
66
        $(CHEW) < $(srcdir)/s_cbrt.c >$@ 2>/dev/null
67
        touch stmp-def
68
 
69
serf.def: s_erf.c
70
        $(CHEW) < $(srcdir)/s_serf.c >$@ 2>/dev/null
71
        touch stmp-def
72
 
73
sexp10.def: s_exp10.c
74
        $(CHEW) < $(srcdir)/s_exp10.c >$@ 2>/dev/null
75
        touch stmp-def
76
 
77
sexpm1.def: s_expm1.c
78
        $(CHEW) < $(srcdir)/s_expm1.c >$@ 2>/dev/null
79
        touch stmp-def
80
 
81
silogb.def: s_ilogb.c
82
        $(CHEW) < $(srcdir)/s_ilogb.c >$@ 2>/dev/null
83
        touch stmp-def
84
 
85
sinfinity.def: s_infinity.c
86
        $(CHEW) < $(srcdir)/s_infinity.c >$@ 2>/dev/null
87
        touch stmp-def
88
 
89
sisnan.def: s_isnan.c
90
        $(CHEW) < $(srcdir)/s_isnan.c >$@ 2>/dev/null
91
        touch stmp-def
92
 
93
slog1p.def: s_log1p.c
94
        $(CHEW) < $(srcdir)/s_log1p.c >$@ 2>/dev/null
95
        touch stmp-def
96
 
97
smodf.def: s_modf.c
98
        $(CHEW) < $(srcdir)/s_modf.c >$@ 2>/dev/null
99
        touch stmp-def
100
 
101
smatherr.def: s_matherr.c
102
        $(CHEW) < $(srcdir)/s_matherr.c >$@ 2>/dev/null
103
        touch stmp-def
104
 
105
snan.def: s_nan.c
106
        $(CHEW) < $(srcdir)/s_nan.c >$@ 2>/dev/null
107
        touch stmp-def
108
 
109
snextafter.def: s_nextafter.c
110
        $(CHEW) < $(srcdir)/s_nextafter.c >$@ 2>/dev/null
111
        touch stmp-def
112
 
113
spow10.def: s_pow10.c
114
        $(CHEW) < $(srcdir)/s_pow10.c >$@ 2>/dev/null
115
        touch stmp-def
116
 
117
sscalbn.def: s_scalbn.c
118
        $(CHEW) < $(srcdir)/s_scalbn.c >$@ 2>/dev/null
119
        touch stmp-def
120
 
121
# A partial dependency list.
122
 
123
$(lib_a_OBJECTS): $(srcdir)/../../libc/include/math.h fdlibm.h

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.