blob: dfcfb009001a93357472addc0579f58480f86d1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
noinst_LIBRARIES = libklm_util_double.a
libklm_util_double_a_SOURCES = \
bignum-dtoa.h \
bignum.h \
cached-powers.h \
diy-fp.h \
double-conversion.h \
fast-dtoa.h \
fixed-dtoa.h \
ieee.h \
strtod.h \
utils.h \
bignum.cc \
bignum-dtoa.cc \
cached-powers.cc \
diy-fp.cc \
double-conversion.cc \
fast-dtoa.cc \
fixed-dtoa.cc \
strtod.cc
AM_CPPFLAGS = -W -Wall -I$(top_srcdir)/klm -I$(top_srcdir)/klm/util/double-conversion
|