make distcheck now works.
This commit is contained in:
parent
dd6cbe7096
commit
c6d896f735
12 changed files with 743 additions and 181 deletions
20
Makefile.am
20
Makefile.am
|
|
@ -1,11 +1,16 @@
|
|||
SUBDIRS = gdtoa
|
||||
|
||||
EXTRA_DIST = docs tests
|
||||
|
||||
dist-hook:
|
||||
rm -fr `find $(distdir) -name .svn`
|
||||
|
||||
lib_LTLIBRARIES = libledger.la
|
||||
if HAVE_BOOST_PYTHON
|
||||
lib_LTLIBRARIES += libpyledger.la
|
||||
endif
|
||||
|
||||
libledger_la_CXXFLAGS = $(WARNFLAGS)
|
||||
libledger_la_CXXFLAGS = $(WARNFLAGS) -I$(includedir)
|
||||
libledger_la_SOURCES = \
|
||||
amount.cc \
|
||||
quotes.cc \
|
||||
|
|
@ -16,8 +21,6 @@ libledger_la_SOURCES = \
|
|||
xpath.cc \
|
||||
mask.cc \
|
||||
format.cc \
|
||||
\
|
||||
trace.cc \
|
||||
util.cc \
|
||||
\
|
||||
session.cc \
|
||||
|
|
@ -50,7 +53,7 @@ libledger_la_SOURCES += ofx.cc
|
|||
endif
|
||||
if DEBUG
|
||||
libledger_la_CXXFLAGS += -DDEBUG_LEVEL=4
|
||||
libledger_la_SOURCES += debug.cc
|
||||
libledger_la_SOURCES += debug.cc trace.cc
|
||||
endif
|
||||
if HAVE_BOOST_PYTHON
|
||||
libledger_la_CXXFLAGS += -DUSE_BOOST_PYTHON=1
|
||||
|
|
@ -72,7 +75,6 @@ libpyledger_la_LDFLAGS = -release 3.0
|
|||
|
||||
|
||||
pkginclude_HEADERS = \
|
||||
acconf.h \
|
||||
amount.h \
|
||||
balance.h \
|
||||
binary.h \
|
||||
|
|
@ -82,6 +84,7 @@ pkginclude_HEADERS = \
|
|||
derive.h \
|
||||
emacs.h \
|
||||
error.h \
|
||||
fdstream.hpp \
|
||||
format.h \
|
||||
gnucash.h \
|
||||
journal.h \
|
||||
|
|
@ -105,6 +108,7 @@ pkginclude_HEADERS = \
|
|||
util.h \
|
||||
value.h \
|
||||
xml.h \
|
||||
xmlparse.h \
|
||||
xpath.h
|
||||
|
||||
######################################################################
|
||||
|
|
@ -145,6 +149,8 @@ if HAVE_BOOST_PYTHON
|
|||
|
||||
noinst_PROGRAMS = ledger.so
|
||||
|
||||
ledger_so_SOURCES = pyledger.cc
|
||||
|
||||
PYLIBS = pyledger ledger gdtoa boost_python gmp pcre
|
||||
|
||||
if HAVE_EXPAT
|
||||
|
|
@ -195,7 +201,7 @@ UnitTests_SOURCES = tests/UnitTests.cc \
|
|||
UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit
|
||||
UnitTests_LDFLAGS = $(LIBADD_DL)
|
||||
|
||||
UnitTests_CXXFLAGS = -I. -Itests
|
||||
UnitTests_CXXFLAGS = -I. -I$(srcdir)/tests
|
||||
if HAVE_EXPAT
|
||||
UnitTests_CXXFLAGS += -DHAVE_EXPAT=1
|
||||
endif
|
||||
|
|
@ -209,6 +215,8 @@ if DEBUG
|
|||
UnitTests_CXXFLAGS += -DDEBUG_LEVEL=4
|
||||
endif
|
||||
|
||||
PyUnitTests_SOURCES =
|
||||
|
||||
PyUnitTests: PyUnitTests.py
|
||||
cp PyUnitTests.py PyUnitTests
|
||||
chmod 755 PyUnitTests
|
||||
|
|
|
|||
135
Makefile.in
135
Makefile.in
|
|
@ -46,7 +46,7 @@ host_triplet = @host@
|
|||
@HAVE_LIBOFX_TRUE@am__append_6 = -DHAVE_LIBOFX=1
|
||||
@HAVE_LIBOFX_TRUE@am__append_7 = ofx.cc
|
||||
@DEBUG_TRUE@am__append_8 = -DDEBUG_LEVEL=4
|
||||
@DEBUG_TRUE@am__append_9 = debug.cc
|
||||
@DEBUG_TRUE@am__append_9 = debug.cc trace.cc
|
||||
@HAVE_BOOST_PYTHON_TRUE@am__append_10 = -DUSE_BOOST_PYTHON=1
|
||||
@DEBUG_TRUE@am__append_11 = -DDEBUG_LEVEL=4
|
||||
bin_PROGRAMS = ledger$(EXEEXT)
|
||||
|
|
@ -69,7 +69,7 @@ check_PROGRAMS = $(am__EXEEXT_2)
|
|||
DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/acconf.h.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog INSTALL NEWS config.guess config.sub depcomp \
|
||||
ChangeLog INSTALL NEWS compile config.guess config.sub depcomp \
|
||||
install-sh ltmain.sh missing texinfo.tex
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
|
|
@ -93,28 +93,28 @@ libLTLIBRARIES_INSTALL = $(INSTALL)
|
|||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
libledger_la_LIBADD =
|
||||
am__libledger_la_SOURCES_DIST = amount.cc quotes.cc balance.cc \
|
||||
value.cc datetime.cc xml.cc xpath.cc mask.cc format.cc \
|
||||
trace.cc util.cc session.cc journal.cc parser.cc textual.cc \
|
||||
binary.cc xmlparse.cc qif.cc report.cc transform.cc csv.cc \
|
||||
derive.cc emacs.cc reconcile.cc gnucash.cc ofx.cc debug.cc
|
||||
value.cc datetime.cc xml.cc xpath.cc mask.cc format.cc util.cc \
|
||||
session.cc journal.cc parser.cc textual.cc binary.cc \
|
||||
xmlparse.cc qif.cc report.cc transform.cc csv.cc derive.cc \
|
||||
emacs.cc reconcile.cc gnucash.cc ofx.cc debug.cc trace.cc
|
||||
@HAVE_EXPAT_TRUE@am__objects_1 = libledger_la-gnucash.lo
|
||||
@HAVE_XMLPARSE_TRUE@am__objects_2 = libledger_la-gnucash.lo
|
||||
@HAVE_LIBOFX_TRUE@am__objects_3 = libledger_la-ofx.lo
|
||||
@DEBUG_TRUE@am__objects_4 = libledger_la-debug.lo
|
||||
@DEBUG_TRUE@am__objects_4 = libledger_la-debug.lo \
|
||||
@DEBUG_TRUE@ libledger_la-trace.lo
|
||||
am_libledger_la_OBJECTS = libledger_la-amount.lo \
|
||||
libledger_la-quotes.lo libledger_la-balance.lo \
|
||||
libledger_la-value.lo libledger_la-datetime.lo \
|
||||
libledger_la-xml.lo libledger_la-xpath.lo libledger_la-mask.lo \
|
||||
libledger_la-format.lo libledger_la-trace.lo \
|
||||
libledger_la-util.lo libledger_la-session.lo \
|
||||
libledger_la-journal.lo libledger_la-parser.lo \
|
||||
libledger_la-textual.lo libledger_la-binary.lo \
|
||||
libledger_la-xmlparse.lo libledger_la-qif.lo \
|
||||
libledger_la-report.lo libledger_la-transform.lo \
|
||||
libledger_la-csv.lo libledger_la-derive.lo \
|
||||
libledger_la-emacs.lo libledger_la-reconcile.lo \
|
||||
$(am__objects_1) $(am__objects_2) $(am__objects_3) \
|
||||
$(am__objects_4)
|
||||
libledger_la-format.lo libledger_la-util.lo \
|
||||
libledger_la-session.lo libledger_la-journal.lo \
|
||||
libledger_la-parser.lo libledger_la-textual.lo \
|
||||
libledger_la-binary.lo libledger_la-xmlparse.lo \
|
||||
libledger_la-qif.lo libledger_la-report.lo \
|
||||
libledger_la-transform.lo libledger_la-csv.lo \
|
||||
libledger_la-derive.lo libledger_la-emacs.lo \
|
||||
libledger_la-reconcile.lo $(am__objects_1) $(am__objects_2) \
|
||||
$(am__objects_3) $(am__objects_4)
|
||||
libledger_la_OBJECTS = $(am_libledger_la_OBJECTS)
|
||||
libpyledger_la_LIBADD =
|
||||
am_libpyledger_la_OBJECTS = libpyledger_la-py_eval.lo \
|
||||
|
|
@ -125,8 +125,8 @@ binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
|
|||
@HAVE_BOOST_PYTHON_TRUE@am__EXEEXT_1 = PyUnitTests$(EXEEXT)
|
||||
am__EXEEXT_2 = UnitTests$(EXEEXT) $(am__EXEEXT_1)
|
||||
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
|
||||
PyUnitTests_SOURCES = PyUnitTests.c
|
||||
PyUnitTests_OBJECTS = PyUnitTests.$(OBJEXT)
|
||||
am_PyUnitTests_OBJECTS =
|
||||
PyUnitTests_OBJECTS = $(am_PyUnitTests_OBJECTS)
|
||||
PyUnitTests_LDADD = $(LDADD)
|
||||
am_UnitTests_OBJECTS = UnitTests-UnitTests.$(OBJEXT) \
|
||||
UnitTests-BasicAmount.$(OBJEXT)
|
||||
|
|
@ -139,20 +139,13 @@ ledger_OBJECTS = $(am_ledger_OBJECTS)
|
|||
am__DEPENDENCIES_3 = @LIBOBJS@
|
||||
ledger_DEPENDENCIES = $(am__DEPENDENCIES_3) libledger.la \
|
||||
gdtoa/libgdtoa.la $(am__DEPENDENCIES_1)
|
||||
ledger_so_SOURCES = ledger.c
|
||||
ledger_so_OBJECTS = ledger.$(OBJEXT)
|
||||
am__ledger_so_SOURCES_DIST = pyledger.cc
|
||||
@HAVE_BOOST_PYTHON_TRUE@am_ledger_so_OBJECTS = pyledger.$(OBJEXT)
|
||||
ledger_so_OBJECTS = $(am_ledger_so_OBJECTS)
|
||||
ledger_so_LDADD = $(LDADD)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
|
||||
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
|
||||
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
||||
|
|
@ -161,11 +154,21 @@ LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \
|
|||
CXXLD = $(CXX)
|
||||
CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \
|
||||
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libledger_la_SOURCES) $(libpyledger_la_SOURCES) \
|
||||
PyUnitTests.c $(UnitTests_SOURCES) $(ledger_SOURCES) ledger.c
|
||||
$(PyUnitTests_SOURCES) $(UnitTests_SOURCES) $(ledger_SOURCES) \
|
||||
$(ledger_so_SOURCES)
|
||||
DIST_SOURCES = $(am__libledger_la_SOURCES_DIST) \
|
||||
$(libpyledger_la_SOURCES) PyUnitTests.c $(UnitTests_SOURCES) \
|
||||
$(ledger_SOURCES) ledger.c
|
||||
$(libpyledger_la_SOURCES) $(PyUnitTests_SOURCES) \
|
||||
$(UnitTests_SOURCES) $(ledger_SOURCES) \
|
||||
$(am__ledger_so_SOURCES_DIST)
|
||||
INFO_DEPS = $(srcdir)/ledger.info
|
||||
am__TEXINFO_TEX_DIR = $(srcdir)
|
||||
DVIS = ledger.dvi
|
||||
|
|
@ -335,11 +338,13 @@ subdirs = @subdirs@
|
|||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
SUBDIRS = gdtoa
|
||||
EXTRA_DIST = docs tests
|
||||
lib_LTLIBRARIES = libledger.la $(am__append_1)
|
||||
libledger_la_CXXFLAGS = $(WARNFLAGS) $(am__append_2) $(am__append_4) \
|
||||
$(am__append_6) $(am__append_8) $(am__append_10)
|
||||
libledger_la_CXXFLAGS = $(WARNFLAGS) -I$(includedir) $(am__append_2) \
|
||||
$(am__append_4) $(am__append_6) $(am__append_8) \
|
||||
$(am__append_10)
|
||||
libledger_la_SOURCES = amount.cc quotes.cc balance.cc value.cc \
|
||||
datetime.cc xml.cc xpath.cc mask.cc format.cc trace.cc util.cc \
|
||||
datetime.cc xml.cc xpath.cc mask.cc format.cc util.cc \
|
||||
session.cc journal.cc parser.cc textual.cc binary.cc \
|
||||
xmlparse.cc qif.cc report.cc transform.cc csv.cc derive.cc \
|
||||
emacs.cc reconcile.cc $(am__append_3) $(am__append_5) \
|
||||
|
|
@ -352,7 +357,6 @@ libpyledger_la_SOURCES = \
|
|||
|
||||
libpyledger_la_LDFLAGS = -release 3.0
|
||||
pkginclude_HEADERS = \
|
||||
acconf.h \
|
||||
amount.h \
|
||||
balance.h \
|
||||
binary.h \
|
||||
|
|
@ -362,6 +366,7 @@ pkginclude_HEADERS = \
|
|||
derive.h \
|
||||
emacs.h \
|
||||
error.h \
|
||||
fdstream.hpp \
|
||||
format.h \
|
||||
gnucash.h \
|
||||
journal.h \
|
||||
|
|
@ -385,6 +390,7 @@ pkginclude_HEADERS = \
|
|||
util.h \
|
||||
value.h \
|
||||
xml.h \
|
||||
xmlparse.h \
|
||||
xpath.h
|
||||
|
||||
ledger_CXXFLAGS = $(am__append_12) $(am__append_13) $(am__append_14) \
|
||||
|
|
@ -394,6 +400,7 @@ ledger_LDADD = $(LIBOBJS) libledger.la gdtoa/libgdtoa.la \
|
|||
$(am__append_16)
|
||||
ledger_LDFLAGS = -static # for the sake of command-line speed
|
||||
info_TEXINFOS = ledger.texi
|
||||
@HAVE_BOOST_PYTHON_TRUE@ledger_so_SOURCES = pyledger.cc
|
||||
@HAVE_BOOST_PYTHON_TRUE@PYLIBS = pyledger ledger gdtoa boost_python \
|
||||
@HAVE_BOOST_PYTHON_TRUE@ gmp pcre $(am__append_18) \
|
||||
@HAVE_BOOST_PYTHON_TRUE@ $(am__append_19) $(am__append_20)
|
||||
|
|
@ -408,13 +415,14 @@ UnitTests_SOURCES = tests/UnitTests.cc \
|
|||
|
||||
UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit
|
||||
UnitTests_LDFLAGS = $(LIBADD_DL)
|
||||
UnitTests_CXXFLAGS = -I. -Itests $(am__append_22) $(am__append_23) \
|
||||
$(am__append_24) $(am__append_25)
|
||||
UnitTests_CXXFLAGS = -I. -I$(srcdir)/tests $(am__append_22) \
|
||||
$(am__append_23) $(am__append_24) $(am__append_25)
|
||||
PyUnitTests_SOURCES =
|
||||
all: acconf.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .c .cc .dvi .html .info .lo .o .obj .pdf .ps .texi
|
||||
.SUFFIXES: .cc .dvi .html .info .lo .o .obj .pdf .ps .texi
|
||||
am--refresh:
|
||||
@:
|
||||
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
|
|
@ -546,7 +554,7 @@ ledger$(EXEEXT): $(ledger_OBJECTS) $(ledger_DEPENDENCIES)
|
|||
$(CXXLINK) $(ledger_LDFLAGS) $(ledger_OBJECTS) $(ledger_LDADD) $(LIBS)
|
||||
@HAVE_BOOST_PYTHON_FALSE@ledger.so$(EXEEXT): $(ledger_so_OBJECTS) $(ledger_so_DEPENDENCIES)
|
||||
@HAVE_BOOST_PYTHON_FALSE@ @rm -f ledger.so$(EXEEXT)
|
||||
@HAVE_BOOST_PYTHON_FALSE@ $(LINK) $(ledger_so_LDFLAGS) $(ledger_so_OBJECTS) $(ledger_so_LDADD) $(LIBS)
|
||||
@HAVE_BOOST_PYTHON_FALSE@ $(CXXLINK) $(ledger_so_LDFLAGS) $(ledger_so_OBJECTS) $(ledger_so_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
|
|
@ -554,12 +562,10 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PyUnitTests.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/UnitTests-BasicAmount.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/UnitTests-UnitTests.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ledger-main.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ledger-option.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ledger.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libledger_la-amount.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libledger_la-balance.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libledger_la-binary.Plo@am__quote@
|
||||
|
|
@ -589,27 +595,7 @@ distclean-compile:
|
|||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libledger_la-xpath.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpyledger_la-py_amount.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpyledger_la-py_eval.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pyledger.Po@am__quote@
|
||||
|
||||
.cc.o:
|
||||
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
|
|
@ -695,13 +681,6 @@ libledger_la-format.lo: format.cc
|
|||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -c -o libledger_la-format.lo `test -f 'format.cc' || echo '$(srcdir)/'`format.cc
|
||||
|
||||
libledger_la-trace.lo: trace.cc
|
||||
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -MT libledger_la-trace.lo -MD -MP -MF "$(DEPDIR)/libledger_la-trace.Tpo" -c -o libledger_la-trace.lo `test -f 'trace.cc' || echo '$(srcdir)/'`trace.cc; \
|
||||
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libledger_la-trace.Tpo" "$(DEPDIR)/libledger_la-trace.Plo"; else rm -f "$(DEPDIR)/libledger_la-trace.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trace.cc' object='libledger_la-trace.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -c -o libledger_la-trace.lo `test -f 'trace.cc' || echo '$(srcdir)/'`trace.cc
|
||||
|
||||
libledger_la-util.lo: util.cc
|
||||
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -MT libledger_la-util.lo -MD -MP -MF "$(DEPDIR)/libledger_la-util.Tpo" -c -o libledger_la-util.lo `test -f 'util.cc' || echo '$(srcdir)/'`util.cc; \
|
||||
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libledger_la-util.Tpo" "$(DEPDIR)/libledger_la-util.Plo"; else rm -f "$(DEPDIR)/libledger_la-util.Tpo"; exit 1; fi
|
||||
|
|
@ -821,6 +800,13 @@ libledger_la-debug.lo: debug.cc
|
|||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -c -o libledger_la-debug.lo `test -f 'debug.cc' || echo '$(srcdir)/'`debug.cc
|
||||
|
||||
libledger_la-trace.lo: trace.cc
|
||||
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -MT libledger_la-trace.lo -MD -MP -MF "$(DEPDIR)/libledger_la-trace.Tpo" -c -o libledger_la-trace.lo `test -f 'trace.cc' || echo '$(srcdir)/'`trace.cc; \
|
||||
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libledger_la-trace.Tpo" "$(DEPDIR)/libledger_la-trace.Plo"; else rm -f "$(DEPDIR)/libledger_la-trace.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='trace.cc' object='libledger_la-trace.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libledger_la_CXXFLAGS) $(CXXFLAGS) -c -o libledger_la-trace.lo `test -f 'trace.cc' || echo '$(srcdir)/'`trace.cc
|
||||
|
||||
libpyledger_la-py_eval.lo: py_eval.cc
|
||||
@am__fastdepCXX_TRUE@ if $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpyledger_la_CXXFLAGS) $(CXXFLAGS) -MT libpyledger_la-py_eval.lo -MD -MP -MF "$(DEPDIR)/libpyledger_la-py_eval.Tpo" -c -o libpyledger_la-py_eval.lo `test -f 'py_eval.cc' || echo '$(srcdir)/'`py_eval.cc; \
|
||||
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/libpyledger_la-py_eval.Tpo" "$(DEPDIR)/libpyledger_la-py_eval.Plo"; else rm -f "$(DEPDIR)/libpyledger_la-py_eval.Tpo"; exit 1; fi
|
||||
|
|
@ -1271,7 +1257,7 @@ distdir: $(DISTFILES)
|
|||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-info
|
||||
dist-info dist-hook
|
||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
|
|
@ -1504,8 +1490,8 @@ uninstall-info: uninstall-info-recursive
|
|||
check-TESTS check-am clean clean-binPROGRAMS \
|
||||
clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
||||
clean-libtool clean-noinstPROGRAMS clean-recursive ctags \
|
||||
ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-info \
|
||||
dist-shar dist-tarZ dist-zip distcheck distclean \
|
||||
ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-hook \
|
||||
dist-info dist-shar dist-tarZ dist-zip distcheck distclean \
|
||||
distclean-compile distclean-generic distclean-hdr \
|
||||
distclean-libtool distclean-recursive distclean-tags \
|
||||
distcleancheck distdir distuninstallcheck dvi dvi-am html \
|
||||
|
|
@ -1523,6 +1509,9 @@ uninstall-info: uninstall-info-recursive
|
|||
uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS
|
||||
|
||||
|
||||
dist-hook:
|
||||
rm -fr `find $(distdir) -name .svn`
|
||||
|
||||
@HAVE_BOOST_PYTHON_TRUE@ledger.so: pyledger.cc libledger.la gdtoa/libgdtoa.la libpyledger.la
|
||||
@HAVE_BOOST_PYTHON_TRUE@ CFLAGS="$(CPPFLAGS)" \
|
||||
@HAVE_BOOST_PYTHON_TRUE@ LDFLAGS="$(LDFLAGS) -L. -L.libs -Lgdtoa -Lgdtoa/.libs" \
|
||||
|
|
|
|||
33
amount.cc
33
amount.cc
|
|
@ -1,3 +1,36 @@
|
|||
// amount.cc
|
||||
|
||||
// $Revision$
|
||||
|
||||
// Copyright (c) 2003-2007, John Wiegley. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// - Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
//
|
||||
// - Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// - Neither the name of New Artisans LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#include "amount.h"
|
||||
#include "binary.h"
|
||||
#include "util.h"
|
||||
|
|
|
|||
33
amount.h
33
amount.h
|
|
@ -1,3 +1,36 @@
|
|||
// amount.h
|
||||
|
||||
// $Revision$
|
||||
|
||||
// Copyright (c) 2003-2007, John Wiegley. All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// - Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
//
|
||||
// - Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// - Neither the name of New Artisans LLC nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#ifndef _AMOUNT_H
|
||||
#define _AMOUNT_H
|
||||
|
||||
|
|
|
|||
142
compile
Executable file
142
compile
Executable file
|
|
@ -0,0 +1,142 @@
|
|||
#! /bin/sh
|
||||
# Wrapper for compilers which do not understand `-c -o'.
|
||||
|
||||
scriptversion=2005-05-14.22
|
||||
|
||||
# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# This file is maintained in Automake, please report
|
||||
# bugs to <bug-automake@gnu.org> or send patches to
|
||||
# <automake-patches@gnu.org>.
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No command. Try \`$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: compile [--help] [--version] PROGRAM [ARGS]
|
||||
|
||||
Wrapper for compilers which do not understand `-c -o'.
|
||||
Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
|
||||
arguments, and rename the output as expected.
|
||||
|
||||
If you are trying to build a whole package this is not the
|
||||
right script to run: please start by reading the file `INSTALL'.
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "compile $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
esac
|
||||
|
||||
ofile=
|
||||
cfile=
|
||||
eat=
|
||||
|
||||
for arg
|
||||
do
|
||||
if test -n "$eat"; then
|
||||
eat=
|
||||
else
|
||||
case $1 in
|
||||
-o)
|
||||
# configure might choose to run compile as `compile cc -o foo foo.c'.
|
||||
# So we strip `-o arg' only if arg is an object.
|
||||
eat=1
|
||||
case $2 in
|
||||
*.o | *.obj)
|
||||
ofile=$2
|
||||
;;
|
||||
*)
|
||||
set x "$@" -o "$2"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*.c)
|
||||
cfile=$1
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
shift
|
||||
done
|
||||
|
||||
if test -z "$ofile" || test -z "$cfile"; then
|
||||
# If no `-o' option was seen then we might have been invoked from a
|
||||
# pattern rule where we don't need one. That is ok -- this is a
|
||||
# normal compilation that the losing compiler can handle. If no
|
||||
# `.c' file was seen then we are probably linking. That is also
|
||||
# ok.
|
||||
exec "$@"
|
||||
fi
|
||||
|
||||
# Name of file we expect compiler to create.
|
||||
cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
||||
|
||||
# Create the lock directory.
|
||||
# Note: use `[/.-]' here to ensure that we don't use the same name
|
||||
# that we are using for the .o file. Also, base the name on the expected
|
||||
# object file name, since that is what matters with a parallel build.
|
||||
lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
|
||||
while true; do
|
||||
if mkdir "$lockdir" >/dev/null 2>&1; then
|
||||
break
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
# FIXME: race condition here if user kills between mkdir and trap.
|
||||
trap "rmdir '$lockdir'; exit 1" 1 2 15
|
||||
|
||||
# Run the compile.
|
||||
"$@"
|
||||
ret=$?
|
||||
|
||||
if test -f "$cofile"; then
|
||||
mv "$cofile" "$ofile"
|
||||
elif test -f "${cofile}bj"; then
|
||||
mv "${cofile}bj" "$ofile"
|
||||
fi
|
||||
|
||||
rmdir "$lockdir"
|
||||
exit $ret
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-end: "$"
|
||||
# End:
|
||||
53
configure
vendored
53
configure
vendored
|
|
@ -717,6 +717,7 @@ PACKAGE_VERSION='3.0'
|
|||
PACKAGE_STRING='ledger 3.0'
|
||||
PACKAGE_BUGREPORT='johnw@newartisans.com'
|
||||
|
||||
ac_unique_file="ledger"
|
||||
ac_unique_file="main.cc"
|
||||
# Factoring default headers for most tests.
|
||||
ac_includes_default="\
|
||||
|
|
@ -1954,6 +1955,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
|
|||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
am__api_version="1.9"
|
||||
ac_aux_dir=
|
||||
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
||||
|
|
@ -2270,8 +2272,8 @@ fi
|
|||
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE=ledger
|
||||
VERSION=3.0
|
||||
PACKAGE='ledger'
|
||||
VERSION='3.0'
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
|
|
@ -2418,6 +2420,7 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
|
|||
|
||||
|
||||
|
||||
|
||||
ac_config_headers="$ac_config_headers acconf.h"
|
||||
|
||||
subdirs="$subdirs gdtoa"
|
||||
|
|
@ -4965,7 +4968,7 @@ ia64-*-hpux*)
|
|||
;;
|
||||
*-*-irix6*)
|
||||
# Find out which ABI we are using.
|
||||
echo '#line 4968 "configure"' > conftest.$ac_ext
|
||||
echo '#line 4971 "configure"' > conftest.$ac_ext
|
||||
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||
(eval $ac_compile) 2>&5
|
||||
ac_status=$?
|
||||
|
|
@ -7388,11 +7391,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:7391: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:7394: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:7395: \$? = $ac_status" >&5
|
||||
echo "$as_me:7398: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -7656,11 +7659,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:7659: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:7662: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:7663: \$? = $ac_status" >&5
|
||||
echo "$as_me:7666: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -7760,11 +7763,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:7763: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:7766: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>out/conftest.err)
|
||||
ac_status=$?
|
||||
cat out/conftest.err >&5
|
||||
echo "$as_me:7767: \$? = $ac_status" >&5
|
||||
echo "$as_me:7770: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||
then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
|
|
@ -10212,7 +10215,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 10215 "configure"
|
||||
#line 10218 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
@ -10312,7 +10315,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 10315 "configure"
|
||||
#line 10318 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
@ -12680,11 +12683,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:12683: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:12686: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:12687: \$? = $ac_status" >&5
|
||||
echo "$as_me:12690: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -12784,11 +12787,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:12787: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:12790: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>out/conftest.err)
|
||||
ac_status=$?
|
||||
cat out/conftest.err >&5
|
||||
echo "$as_me:12791: \$? = $ac_status" >&5
|
||||
echo "$as_me:12794: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||
then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
|
|
@ -14354,11 +14357,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:14357: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:14360: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:14361: \$? = $ac_status" >&5
|
||||
echo "$as_me:14364: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -14458,11 +14461,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:14461: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:14464: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>out/conftest.err)
|
||||
ac_status=$?
|
||||
cat out/conftest.err >&5
|
||||
echo "$as_me:14465: \$? = $ac_status" >&5
|
||||
echo "$as_me:14468: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||
then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
|
|
@ -16688,11 +16691,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:16691: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:16694: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:16695: \$? = $ac_status" >&5
|
||||
echo "$as_me:16698: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -16956,11 +16959,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:16959: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:16962: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>conftest.err)
|
||||
ac_status=$?
|
||||
cat conftest.err >&5
|
||||
echo "$as_me:16963: \$? = $ac_status" >&5
|
||||
echo "$as_me:16966: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
# So say no if there are warnings other than the usual output.
|
||||
|
|
@ -17060,11 +17063,11 @@ else
|
|||
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||
-e 's:$: $lt_compiler_flag:'`
|
||||
(eval echo "\"\$as_me:17063: $lt_compile\"" >&5)
|
||||
(eval echo "\"\$as_me:17066: $lt_compile\"" >&5)
|
||||
(eval "$lt_compile" 2>out/conftest.err)
|
||||
ac_status=$?
|
||||
cat out/conftest.err >&5
|
||||
echo "$as_me:17067: \$? = $ac_status" >&5
|
||||
echo "$as_me:17070: \$? = $ac_status" >&5
|
||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||
then
|
||||
# The compiler can only warn and ignore the option if not recognized
|
||||
|
|
|
|||
|
|
@ -2,8 +2,11 @@
|
|||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
AC_INIT(ledger, 3.0, johnw@newartisans.com)
|
||||
AM_INIT_AUTOMAKE(ledger, 3.0)
|
||||
|
||||
AC_INIT(ledger, 3.0-svn-698, johnw@newartisans.com)
|
||||
AC_CONFIG_SRCDIR(ledger)
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
AC_CONFIG_SRCDIR([main.cc])
|
||||
AC_CONFIG_HEADER([acconf.h])
|
||||
AC_CONFIG_SUBDIRS([gdtoa])
|
||||
|
|
|
|||
14
debug.h
14
debug.h
|
|
@ -135,10 +135,22 @@ void operator delete[](void*, const std::nothrow_t&) throw();
|
|||
#define assert(x)
|
||||
#define CONFIRM(x)
|
||||
|
||||
#elif DEBUG_LEVEL >= RELEASE
|
||||
#define TRACE_CTOR(cls)
|
||||
#define TRACE_DTOR(cls)
|
||||
#define TRACE(cat, msg)
|
||||
#define TRACE_PUSH(cat, msg)
|
||||
#define TRACE_POP(cat, msg)
|
||||
|
||||
#elif DEBUG_LEVEL == RELEASE
|
||||
|
||||
#define CONFIRM(x)
|
||||
|
||||
#define TRACE_CTOR(cls)
|
||||
#define TRACE_DTOR(cls)
|
||||
#define TRACE(cat, msg)
|
||||
#define TRACE_PUSH(cat, msg)
|
||||
#define TRACE_POP(cat, msg)
|
||||
|
||||
#elif DEBUG_LEVEL >= BETA
|
||||
|
||||
#define CONFIRM(x) assert(x)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
lib_LTLIBRARIES = libgdtoa.la
|
||||
|
||||
libgdtoa_la_CPPFLAGS = -I$(includedir)
|
||||
libgdtoa_la_SOURCES = \
|
||||
dmisc.c dtoa.c g_Qfmt.c g__fmt.c g_ddfmt.c g_dfmt.c g_ffmt.c \
|
||||
g_xLfmt.c g_xfmt.c gdtoa.c gethex.c gmisc.c hd_init.c hexnan.c \
|
||||
|
|
@ -8,19 +9,25 @@ libgdtoa_la_SOURCES = \
|
|||
strtopd.c strtopdd.c strtopf.c strtopx.c strtopxL.c strtorQ.c \
|
||||
strtord.c strtordd.c strtorf.c strtorx.c strtorxL.c sum.c ulp.c
|
||||
|
||||
EXTRA_libgdtoa_la_SOURCES = arithchk.c qnan.c
|
||||
|
||||
$(libgdtoa_la_SOURCES): arith.h gd_qnan.h
|
||||
|
||||
arith.h: arithchk.c
|
||||
$(CC) $(CFLAGS) -o arithchk arithchk.c || \
|
||||
$(CC) -DNO_LONG_LONG $(CFLAGS) -o arithchk arithchk.c
|
||||
./arithchk > arith.h
|
||||
mkdir -p $(includedir)
|
||||
$(CC) $(CFLAGS) -o $(prefix)/arithchk $< || \
|
||||
$(CC) -DNO_LONG_LONG $(CFLAGS) -o $(prefix)/arithchk $<
|
||||
$(prefix)/arithchk > $(includedir)/$@
|
||||
rm -f $(prefix)/arithchk
|
||||
|
||||
gd_qnan.h: arith.h qnan.c
|
||||
$(CC) $(CFLAGS) -o qnan qnan.c
|
||||
./qnan >gd_qnan.h
|
||||
gd_qnan.h: qnan.c arith.h
|
||||
$(CC) $(CFLAGS) -o $(prefix)/qnan -I$(includedir) $<
|
||||
$(prefix)/qnan > $(includedir)/$@
|
||||
rm -f $(prefix)/qnan
|
||||
|
||||
libgdtoa_la_LDFLAGS = -release 1.0
|
||||
|
||||
pkginclude_HEADERS = gdtoa.h
|
||||
pkginclude_HEADERS = gdtoa.h gdtoaimp.h
|
||||
|
||||
CLEANFILES = arithchk qnan
|
||||
DISTCLEANFILES = arithchk arith.h qnan qnan.h
|
||||
|
|
|
|||
|
|
@ -38,12 +38,12 @@ POST_UNINSTALL = :
|
|||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \
|
||||
$(srcdir)/../config.guess $(srcdir)/../config.sub \
|
||||
$(srcdir)/../depcomp $(srcdir)/../install-sh \
|
||||
$(srcdir)/../ltmain.sh $(srcdir)/../missing \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/acconf.h.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog INSTALL NEWS
|
||||
$(srcdir)/../compile $(srcdir)/../config.guess \
|
||||
$(srcdir)/../config.sub $(srcdir)/../depcomp \
|
||||
$(srcdir)/../install-sh $(srcdir)/../ltmain.sh \
|
||||
$(srcdir)/../missing $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/acconf.h.in \
|
||||
$(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
||||
|
|
@ -64,14 +64,26 @@ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"
|
|||
libLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
libgdtoa_la_LIBADD =
|
||||
am_libgdtoa_la_OBJECTS = dmisc.lo dtoa.lo g_Qfmt.lo g__fmt.lo \
|
||||
g_ddfmt.lo g_dfmt.lo g_ffmt.lo g_xLfmt.lo g_xfmt.lo gdtoa.lo \
|
||||
gethex.lo gmisc.lo hd_init.lo hexnan.lo misc.lo smisc.lo \
|
||||
strtoIQ.lo strtoId.lo strtoIdd.lo strtoIf.lo strtoIg.lo \
|
||||
strtoIx.lo strtoIxL.lo strtod.lo strtodI.lo strtodg.lo \
|
||||
strtof.lo strtopQ.lo strtopd.lo strtopdd.lo strtopf.lo \
|
||||
strtopx.lo strtopxL.lo strtorQ.lo strtord.lo strtordd.lo \
|
||||
strtorf.lo strtorx.lo strtorxL.lo sum.lo ulp.lo
|
||||
am_libgdtoa_la_OBJECTS = libgdtoa_la-dmisc.lo libgdtoa_la-dtoa.lo \
|
||||
libgdtoa_la-g_Qfmt.lo libgdtoa_la-g__fmt.lo \
|
||||
libgdtoa_la-g_ddfmt.lo libgdtoa_la-g_dfmt.lo \
|
||||
libgdtoa_la-g_ffmt.lo libgdtoa_la-g_xLfmt.lo \
|
||||
libgdtoa_la-g_xfmt.lo libgdtoa_la-gdtoa.lo \
|
||||
libgdtoa_la-gethex.lo libgdtoa_la-gmisc.lo \
|
||||
libgdtoa_la-hd_init.lo libgdtoa_la-hexnan.lo \
|
||||
libgdtoa_la-misc.lo libgdtoa_la-smisc.lo \
|
||||
libgdtoa_la-strtoIQ.lo libgdtoa_la-strtoId.lo \
|
||||
libgdtoa_la-strtoIdd.lo libgdtoa_la-strtoIf.lo \
|
||||
libgdtoa_la-strtoIg.lo libgdtoa_la-strtoIx.lo \
|
||||
libgdtoa_la-strtoIxL.lo libgdtoa_la-strtod.lo \
|
||||
libgdtoa_la-strtodI.lo libgdtoa_la-strtodg.lo \
|
||||
libgdtoa_la-strtof.lo libgdtoa_la-strtopQ.lo \
|
||||
libgdtoa_la-strtopd.lo libgdtoa_la-strtopdd.lo \
|
||||
libgdtoa_la-strtopf.lo libgdtoa_la-strtopx.lo \
|
||||
libgdtoa_la-strtopxL.lo libgdtoa_la-strtorQ.lo \
|
||||
libgdtoa_la-strtord.lo libgdtoa_la-strtordd.lo \
|
||||
libgdtoa_la-strtorf.lo libgdtoa_la-strtorx.lo \
|
||||
libgdtoa_la-strtorxL.lo libgdtoa_la-sum.lo libgdtoa_la-ulp.lo
|
||||
libgdtoa_la_OBJECTS = $(am_libgdtoa_la_OBJECTS)
|
||||
DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
|
||||
depcomp = $(SHELL) $(top_srcdir)/../depcomp
|
||||
|
|
@ -84,8 +96,8 @@ LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
|||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libgdtoa_la_SOURCES)
|
||||
DIST_SOURCES = $(libgdtoa_la_SOURCES)
|
||||
SOURCES = $(libgdtoa_la_SOURCES) $(EXTRA_libgdtoa_la_SOURCES)
|
||||
DIST_SOURCES = $(libgdtoa_la_SOURCES) $(EXTRA_libgdtoa_la_SOURCES)
|
||||
pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
|
||||
HEADERS = $(pkginclude_HEADERS)
|
||||
ETAGS = etags
|
||||
|
|
@ -203,6 +215,7 @@ sharedstatedir = @sharedstatedir@
|
|||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
lib_LTLIBRARIES = libgdtoa.la
|
||||
libgdtoa_la_CPPFLAGS = -I$(includedir)
|
||||
libgdtoa_la_SOURCES = \
|
||||
dmisc.c dtoa.c g_Qfmt.c g__fmt.c g_ddfmt.c g_dfmt.c g_ffmt.c \
|
||||
g_xLfmt.c g_xfmt.c gdtoa.c gethex.c gmisc.c hd_init.c hexnan.c \
|
||||
|
|
@ -211,9 +224,11 @@ libgdtoa_la_SOURCES = \
|
|||
strtopd.c strtopdd.c strtopf.c strtopx.c strtopxL.c strtorQ.c \
|
||||
strtord.c strtordd.c strtorf.c strtorx.c strtorxL.c sum.c ulp.c
|
||||
|
||||
EXTRA_libgdtoa_la_SOURCES = arithchk.c qnan.c
|
||||
libgdtoa_la_LDFLAGS = -release 1.0
|
||||
pkginclude_HEADERS = gdtoa.h
|
||||
pkginclude_HEADERS = gdtoa.h gdtoaimp.h
|
||||
CLEANFILES = arithchk qnan
|
||||
DISTCLEANFILES = arithchk arith.h qnan qnan.h
|
||||
all: acconf.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
|
|
@ -305,47 +320,49 @@ mostlyclean-compile:
|
|||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dmisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dtoa.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_Qfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g__fmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_ddfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_dfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_ffmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_xLfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/g_xfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdtoa.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gethex.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gmisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hd_init.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hexnan.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/misc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/smisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoId.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIdd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIg.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtoIxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtod.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtodI.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtodg.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtof.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopdd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtopxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtorQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtord.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtordd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtorf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtorx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtorxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sum.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ulp.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-arithchk.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-dmisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-dtoa.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_Qfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g__fmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_ddfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_dfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_ffmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_xLfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-g_xfmt.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-gdtoa.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-gethex.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-gmisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-hd_init.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-hexnan.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-misc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-qnan.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-smisc.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoId.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIdd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIg.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtoIxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtod.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtodI.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtodg.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtof.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopdd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtopxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtorQ.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtord.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtordd.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtorf.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtorx.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-strtorxL.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-sum.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgdtoa_la-ulp.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
|
|
@ -368,6 +385,307 @@ distclean-compile:
|
|||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
libgdtoa_la-dmisc.lo: dmisc.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-dmisc.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-dmisc.Tpo" -c -o libgdtoa_la-dmisc.lo `test -f 'dmisc.c' || echo '$(srcdir)/'`dmisc.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-dmisc.Tpo" "$(DEPDIR)/libgdtoa_la-dmisc.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-dmisc.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dmisc.c' object='libgdtoa_la-dmisc.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-dmisc.lo `test -f 'dmisc.c' || echo '$(srcdir)/'`dmisc.c
|
||||
|
||||
libgdtoa_la-dtoa.lo: dtoa.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-dtoa.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-dtoa.Tpo" -c -o libgdtoa_la-dtoa.lo `test -f 'dtoa.c' || echo '$(srcdir)/'`dtoa.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-dtoa.Tpo" "$(DEPDIR)/libgdtoa_la-dtoa.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-dtoa.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dtoa.c' object='libgdtoa_la-dtoa.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-dtoa.lo `test -f 'dtoa.c' || echo '$(srcdir)/'`dtoa.c
|
||||
|
||||
libgdtoa_la-g_Qfmt.lo: g_Qfmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_Qfmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_Qfmt.Tpo" -c -o libgdtoa_la-g_Qfmt.lo `test -f 'g_Qfmt.c' || echo '$(srcdir)/'`g_Qfmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_Qfmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_Qfmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_Qfmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_Qfmt.c' object='libgdtoa_la-g_Qfmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_Qfmt.lo `test -f 'g_Qfmt.c' || echo '$(srcdir)/'`g_Qfmt.c
|
||||
|
||||
libgdtoa_la-g__fmt.lo: g__fmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g__fmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g__fmt.Tpo" -c -o libgdtoa_la-g__fmt.lo `test -f 'g__fmt.c' || echo '$(srcdir)/'`g__fmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g__fmt.Tpo" "$(DEPDIR)/libgdtoa_la-g__fmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g__fmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g__fmt.c' object='libgdtoa_la-g__fmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g__fmt.lo `test -f 'g__fmt.c' || echo '$(srcdir)/'`g__fmt.c
|
||||
|
||||
libgdtoa_la-g_ddfmt.lo: g_ddfmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_ddfmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_ddfmt.Tpo" -c -o libgdtoa_la-g_ddfmt.lo `test -f 'g_ddfmt.c' || echo '$(srcdir)/'`g_ddfmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_ddfmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_ddfmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_ddfmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_ddfmt.c' object='libgdtoa_la-g_ddfmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_ddfmt.lo `test -f 'g_ddfmt.c' || echo '$(srcdir)/'`g_ddfmt.c
|
||||
|
||||
libgdtoa_la-g_dfmt.lo: g_dfmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_dfmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_dfmt.Tpo" -c -o libgdtoa_la-g_dfmt.lo `test -f 'g_dfmt.c' || echo '$(srcdir)/'`g_dfmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_dfmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_dfmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_dfmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_dfmt.c' object='libgdtoa_la-g_dfmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_dfmt.lo `test -f 'g_dfmt.c' || echo '$(srcdir)/'`g_dfmt.c
|
||||
|
||||
libgdtoa_la-g_ffmt.lo: g_ffmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_ffmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_ffmt.Tpo" -c -o libgdtoa_la-g_ffmt.lo `test -f 'g_ffmt.c' || echo '$(srcdir)/'`g_ffmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_ffmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_ffmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_ffmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_ffmt.c' object='libgdtoa_la-g_ffmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_ffmt.lo `test -f 'g_ffmt.c' || echo '$(srcdir)/'`g_ffmt.c
|
||||
|
||||
libgdtoa_la-g_xLfmt.lo: g_xLfmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_xLfmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_xLfmt.Tpo" -c -o libgdtoa_la-g_xLfmt.lo `test -f 'g_xLfmt.c' || echo '$(srcdir)/'`g_xLfmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_xLfmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_xLfmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_xLfmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_xLfmt.c' object='libgdtoa_la-g_xLfmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_xLfmt.lo `test -f 'g_xLfmt.c' || echo '$(srcdir)/'`g_xLfmt.c
|
||||
|
||||
libgdtoa_la-g_xfmt.lo: g_xfmt.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-g_xfmt.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-g_xfmt.Tpo" -c -o libgdtoa_la-g_xfmt.lo `test -f 'g_xfmt.c' || echo '$(srcdir)/'`g_xfmt.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-g_xfmt.Tpo" "$(DEPDIR)/libgdtoa_la-g_xfmt.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-g_xfmt.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='g_xfmt.c' object='libgdtoa_la-g_xfmt.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-g_xfmt.lo `test -f 'g_xfmt.c' || echo '$(srcdir)/'`g_xfmt.c
|
||||
|
||||
libgdtoa_la-gdtoa.lo: gdtoa.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-gdtoa.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-gdtoa.Tpo" -c -o libgdtoa_la-gdtoa.lo `test -f 'gdtoa.c' || echo '$(srcdir)/'`gdtoa.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-gdtoa.Tpo" "$(DEPDIR)/libgdtoa_la-gdtoa.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-gdtoa.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gdtoa.c' object='libgdtoa_la-gdtoa.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-gdtoa.lo `test -f 'gdtoa.c' || echo '$(srcdir)/'`gdtoa.c
|
||||
|
||||
libgdtoa_la-gethex.lo: gethex.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-gethex.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-gethex.Tpo" -c -o libgdtoa_la-gethex.lo `test -f 'gethex.c' || echo '$(srcdir)/'`gethex.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-gethex.Tpo" "$(DEPDIR)/libgdtoa_la-gethex.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-gethex.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gethex.c' object='libgdtoa_la-gethex.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-gethex.lo `test -f 'gethex.c' || echo '$(srcdir)/'`gethex.c
|
||||
|
||||
libgdtoa_la-gmisc.lo: gmisc.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-gmisc.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-gmisc.Tpo" -c -o libgdtoa_la-gmisc.lo `test -f 'gmisc.c' || echo '$(srcdir)/'`gmisc.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-gmisc.Tpo" "$(DEPDIR)/libgdtoa_la-gmisc.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-gmisc.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gmisc.c' object='libgdtoa_la-gmisc.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-gmisc.lo `test -f 'gmisc.c' || echo '$(srcdir)/'`gmisc.c
|
||||
|
||||
libgdtoa_la-hd_init.lo: hd_init.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-hd_init.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-hd_init.Tpo" -c -o libgdtoa_la-hd_init.lo `test -f 'hd_init.c' || echo '$(srcdir)/'`hd_init.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-hd_init.Tpo" "$(DEPDIR)/libgdtoa_la-hd_init.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-hd_init.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hd_init.c' object='libgdtoa_la-hd_init.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-hd_init.lo `test -f 'hd_init.c' || echo '$(srcdir)/'`hd_init.c
|
||||
|
||||
libgdtoa_la-hexnan.lo: hexnan.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-hexnan.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-hexnan.Tpo" -c -o libgdtoa_la-hexnan.lo `test -f 'hexnan.c' || echo '$(srcdir)/'`hexnan.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-hexnan.Tpo" "$(DEPDIR)/libgdtoa_la-hexnan.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-hexnan.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hexnan.c' object='libgdtoa_la-hexnan.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-hexnan.lo `test -f 'hexnan.c' || echo '$(srcdir)/'`hexnan.c
|
||||
|
||||
libgdtoa_la-misc.lo: misc.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-misc.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-misc.Tpo" -c -o libgdtoa_la-misc.lo `test -f 'misc.c' || echo '$(srcdir)/'`misc.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-misc.Tpo" "$(DEPDIR)/libgdtoa_la-misc.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-misc.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='misc.c' object='libgdtoa_la-misc.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-misc.lo `test -f 'misc.c' || echo '$(srcdir)/'`misc.c
|
||||
|
||||
libgdtoa_la-smisc.lo: smisc.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-smisc.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-smisc.Tpo" -c -o libgdtoa_la-smisc.lo `test -f 'smisc.c' || echo '$(srcdir)/'`smisc.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-smisc.Tpo" "$(DEPDIR)/libgdtoa_la-smisc.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-smisc.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='smisc.c' object='libgdtoa_la-smisc.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-smisc.lo `test -f 'smisc.c' || echo '$(srcdir)/'`smisc.c
|
||||
|
||||
libgdtoa_la-strtoIQ.lo: strtoIQ.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIQ.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIQ.Tpo" -c -o libgdtoa_la-strtoIQ.lo `test -f 'strtoIQ.c' || echo '$(srcdir)/'`strtoIQ.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIQ.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIQ.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIQ.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIQ.c' object='libgdtoa_la-strtoIQ.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIQ.lo `test -f 'strtoIQ.c' || echo '$(srcdir)/'`strtoIQ.c
|
||||
|
||||
libgdtoa_la-strtoId.lo: strtoId.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoId.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoId.Tpo" -c -o libgdtoa_la-strtoId.lo `test -f 'strtoId.c' || echo '$(srcdir)/'`strtoId.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoId.Tpo" "$(DEPDIR)/libgdtoa_la-strtoId.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoId.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoId.c' object='libgdtoa_la-strtoId.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoId.lo `test -f 'strtoId.c' || echo '$(srcdir)/'`strtoId.c
|
||||
|
||||
libgdtoa_la-strtoIdd.lo: strtoIdd.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIdd.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIdd.Tpo" -c -o libgdtoa_la-strtoIdd.lo `test -f 'strtoIdd.c' || echo '$(srcdir)/'`strtoIdd.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIdd.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIdd.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIdd.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIdd.c' object='libgdtoa_la-strtoIdd.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIdd.lo `test -f 'strtoIdd.c' || echo '$(srcdir)/'`strtoIdd.c
|
||||
|
||||
libgdtoa_la-strtoIf.lo: strtoIf.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIf.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIf.Tpo" -c -o libgdtoa_la-strtoIf.lo `test -f 'strtoIf.c' || echo '$(srcdir)/'`strtoIf.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIf.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIf.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIf.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIf.c' object='libgdtoa_la-strtoIf.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIf.lo `test -f 'strtoIf.c' || echo '$(srcdir)/'`strtoIf.c
|
||||
|
||||
libgdtoa_la-strtoIg.lo: strtoIg.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIg.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIg.Tpo" -c -o libgdtoa_la-strtoIg.lo `test -f 'strtoIg.c' || echo '$(srcdir)/'`strtoIg.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIg.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIg.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIg.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIg.c' object='libgdtoa_la-strtoIg.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIg.lo `test -f 'strtoIg.c' || echo '$(srcdir)/'`strtoIg.c
|
||||
|
||||
libgdtoa_la-strtoIx.lo: strtoIx.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIx.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIx.Tpo" -c -o libgdtoa_la-strtoIx.lo `test -f 'strtoIx.c' || echo '$(srcdir)/'`strtoIx.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIx.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIx.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIx.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIx.c' object='libgdtoa_la-strtoIx.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIx.lo `test -f 'strtoIx.c' || echo '$(srcdir)/'`strtoIx.c
|
||||
|
||||
libgdtoa_la-strtoIxL.lo: strtoIxL.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtoIxL.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtoIxL.Tpo" -c -o libgdtoa_la-strtoIxL.lo `test -f 'strtoIxL.c' || echo '$(srcdir)/'`strtoIxL.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtoIxL.Tpo" "$(DEPDIR)/libgdtoa_la-strtoIxL.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtoIxL.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtoIxL.c' object='libgdtoa_la-strtoIxL.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtoIxL.lo `test -f 'strtoIxL.c' || echo '$(srcdir)/'`strtoIxL.c
|
||||
|
||||
libgdtoa_la-strtod.lo: strtod.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtod.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtod.Tpo" -c -o libgdtoa_la-strtod.lo `test -f 'strtod.c' || echo '$(srcdir)/'`strtod.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtod.Tpo" "$(DEPDIR)/libgdtoa_la-strtod.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtod.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtod.c' object='libgdtoa_la-strtod.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtod.lo `test -f 'strtod.c' || echo '$(srcdir)/'`strtod.c
|
||||
|
||||
libgdtoa_la-strtodI.lo: strtodI.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtodI.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtodI.Tpo" -c -o libgdtoa_la-strtodI.lo `test -f 'strtodI.c' || echo '$(srcdir)/'`strtodI.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtodI.Tpo" "$(DEPDIR)/libgdtoa_la-strtodI.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtodI.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtodI.c' object='libgdtoa_la-strtodI.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtodI.lo `test -f 'strtodI.c' || echo '$(srcdir)/'`strtodI.c
|
||||
|
||||
libgdtoa_la-strtodg.lo: strtodg.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtodg.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtodg.Tpo" -c -o libgdtoa_la-strtodg.lo `test -f 'strtodg.c' || echo '$(srcdir)/'`strtodg.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtodg.Tpo" "$(DEPDIR)/libgdtoa_la-strtodg.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtodg.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtodg.c' object='libgdtoa_la-strtodg.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtodg.lo `test -f 'strtodg.c' || echo '$(srcdir)/'`strtodg.c
|
||||
|
||||
libgdtoa_la-strtof.lo: strtof.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtof.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtof.Tpo" -c -o libgdtoa_la-strtof.lo `test -f 'strtof.c' || echo '$(srcdir)/'`strtof.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtof.Tpo" "$(DEPDIR)/libgdtoa_la-strtof.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtof.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtof.c' object='libgdtoa_la-strtof.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtof.lo `test -f 'strtof.c' || echo '$(srcdir)/'`strtof.c
|
||||
|
||||
libgdtoa_la-strtopQ.lo: strtopQ.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopQ.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopQ.Tpo" -c -o libgdtoa_la-strtopQ.lo `test -f 'strtopQ.c' || echo '$(srcdir)/'`strtopQ.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopQ.Tpo" "$(DEPDIR)/libgdtoa_la-strtopQ.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopQ.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopQ.c' object='libgdtoa_la-strtopQ.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopQ.lo `test -f 'strtopQ.c' || echo '$(srcdir)/'`strtopQ.c
|
||||
|
||||
libgdtoa_la-strtopd.lo: strtopd.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopd.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopd.Tpo" -c -o libgdtoa_la-strtopd.lo `test -f 'strtopd.c' || echo '$(srcdir)/'`strtopd.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopd.Tpo" "$(DEPDIR)/libgdtoa_la-strtopd.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopd.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopd.c' object='libgdtoa_la-strtopd.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopd.lo `test -f 'strtopd.c' || echo '$(srcdir)/'`strtopd.c
|
||||
|
||||
libgdtoa_la-strtopdd.lo: strtopdd.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopdd.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopdd.Tpo" -c -o libgdtoa_la-strtopdd.lo `test -f 'strtopdd.c' || echo '$(srcdir)/'`strtopdd.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopdd.Tpo" "$(DEPDIR)/libgdtoa_la-strtopdd.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopdd.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopdd.c' object='libgdtoa_la-strtopdd.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopdd.lo `test -f 'strtopdd.c' || echo '$(srcdir)/'`strtopdd.c
|
||||
|
||||
libgdtoa_la-strtopf.lo: strtopf.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopf.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopf.Tpo" -c -o libgdtoa_la-strtopf.lo `test -f 'strtopf.c' || echo '$(srcdir)/'`strtopf.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopf.Tpo" "$(DEPDIR)/libgdtoa_la-strtopf.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopf.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopf.c' object='libgdtoa_la-strtopf.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopf.lo `test -f 'strtopf.c' || echo '$(srcdir)/'`strtopf.c
|
||||
|
||||
libgdtoa_la-strtopx.lo: strtopx.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopx.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopx.Tpo" -c -o libgdtoa_la-strtopx.lo `test -f 'strtopx.c' || echo '$(srcdir)/'`strtopx.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopx.Tpo" "$(DEPDIR)/libgdtoa_la-strtopx.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopx.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopx.c' object='libgdtoa_la-strtopx.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopx.lo `test -f 'strtopx.c' || echo '$(srcdir)/'`strtopx.c
|
||||
|
||||
libgdtoa_la-strtopxL.lo: strtopxL.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtopxL.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtopxL.Tpo" -c -o libgdtoa_la-strtopxL.lo `test -f 'strtopxL.c' || echo '$(srcdir)/'`strtopxL.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtopxL.Tpo" "$(DEPDIR)/libgdtoa_la-strtopxL.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtopxL.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtopxL.c' object='libgdtoa_la-strtopxL.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtopxL.lo `test -f 'strtopxL.c' || echo '$(srcdir)/'`strtopxL.c
|
||||
|
||||
libgdtoa_la-strtorQ.lo: strtorQ.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtorQ.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtorQ.Tpo" -c -o libgdtoa_la-strtorQ.lo `test -f 'strtorQ.c' || echo '$(srcdir)/'`strtorQ.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtorQ.Tpo" "$(DEPDIR)/libgdtoa_la-strtorQ.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtorQ.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtorQ.c' object='libgdtoa_la-strtorQ.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtorQ.lo `test -f 'strtorQ.c' || echo '$(srcdir)/'`strtorQ.c
|
||||
|
||||
libgdtoa_la-strtord.lo: strtord.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtord.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtord.Tpo" -c -o libgdtoa_la-strtord.lo `test -f 'strtord.c' || echo '$(srcdir)/'`strtord.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtord.Tpo" "$(DEPDIR)/libgdtoa_la-strtord.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtord.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtord.c' object='libgdtoa_la-strtord.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtord.lo `test -f 'strtord.c' || echo '$(srcdir)/'`strtord.c
|
||||
|
||||
libgdtoa_la-strtordd.lo: strtordd.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtordd.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtordd.Tpo" -c -o libgdtoa_la-strtordd.lo `test -f 'strtordd.c' || echo '$(srcdir)/'`strtordd.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtordd.Tpo" "$(DEPDIR)/libgdtoa_la-strtordd.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtordd.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtordd.c' object='libgdtoa_la-strtordd.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtordd.lo `test -f 'strtordd.c' || echo '$(srcdir)/'`strtordd.c
|
||||
|
||||
libgdtoa_la-strtorf.lo: strtorf.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtorf.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtorf.Tpo" -c -o libgdtoa_la-strtorf.lo `test -f 'strtorf.c' || echo '$(srcdir)/'`strtorf.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtorf.Tpo" "$(DEPDIR)/libgdtoa_la-strtorf.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtorf.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtorf.c' object='libgdtoa_la-strtorf.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtorf.lo `test -f 'strtorf.c' || echo '$(srcdir)/'`strtorf.c
|
||||
|
||||
libgdtoa_la-strtorx.lo: strtorx.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtorx.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtorx.Tpo" -c -o libgdtoa_la-strtorx.lo `test -f 'strtorx.c' || echo '$(srcdir)/'`strtorx.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtorx.Tpo" "$(DEPDIR)/libgdtoa_la-strtorx.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtorx.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtorx.c' object='libgdtoa_la-strtorx.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtorx.lo `test -f 'strtorx.c' || echo '$(srcdir)/'`strtorx.c
|
||||
|
||||
libgdtoa_la-strtorxL.lo: strtorxL.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-strtorxL.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-strtorxL.Tpo" -c -o libgdtoa_la-strtorxL.lo `test -f 'strtorxL.c' || echo '$(srcdir)/'`strtorxL.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-strtorxL.Tpo" "$(DEPDIR)/libgdtoa_la-strtorxL.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-strtorxL.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='strtorxL.c' object='libgdtoa_la-strtorxL.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-strtorxL.lo `test -f 'strtorxL.c' || echo '$(srcdir)/'`strtorxL.c
|
||||
|
||||
libgdtoa_la-sum.lo: sum.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-sum.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-sum.Tpo" -c -o libgdtoa_la-sum.lo `test -f 'sum.c' || echo '$(srcdir)/'`sum.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-sum.Tpo" "$(DEPDIR)/libgdtoa_la-sum.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-sum.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sum.c' object='libgdtoa_la-sum.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-sum.lo `test -f 'sum.c' || echo '$(srcdir)/'`sum.c
|
||||
|
||||
libgdtoa_la-ulp.lo: ulp.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-ulp.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-ulp.Tpo" -c -o libgdtoa_la-ulp.lo `test -f 'ulp.c' || echo '$(srcdir)/'`ulp.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-ulp.Tpo" "$(DEPDIR)/libgdtoa_la-ulp.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-ulp.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ulp.c' object='libgdtoa_la-ulp.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-ulp.lo `test -f 'ulp.c' || echo '$(srcdir)/'`ulp.c
|
||||
|
||||
libgdtoa_la-arithchk.lo: arithchk.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-arithchk.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-arithchk.Tpo" -c -o libgdtoa_la-arithchk.lo `test -f 'arithchk.c' || echo '$(srcdir)/'`arithchk.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-arithchk.Tpo" "$(DEPDIR)/libgdtoa_la-arithchk.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-arithchk.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='arithchk.c' object='libgdtoa_la-arithchk.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-arithchk.lo `test -f 'arithchk.c' || echo '$(srcdir)/'`arithchk.c
|
||||
|
||||
libgdtoa_la-qnan.lo: qnan.c
|
||||
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgdtoa_la-qnan.lo -MD -MP -MF "$(DEPDIR)/libgdtoa_la-qnan.Tpo" -c -o libgdtoa_la-qnan.lo `test -f 'qnan.c' || echo '$(srcdir)/'`qnan.c; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgdtoa_la-qnan.Tpo" "$(DEPDIR)/libgdtoa_la-qnan.Plo"; else rm -f "$(DEPDIR)/libgdtoa_la-qnan.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='qnan.c' object='libgdtoa_la-qnan.lo' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdtoa_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgdtoa_la-qnan.lo `test -f 'qnan.c' || echo '$(srcdir)/'`qnan.c
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
|
|
@ -598,6 +916,7 @@ clean-generic:
|
|||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
|
|
@ -677,13 +996,16 @@ uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \
|
|||
$(libgdtoa_la_SOURCES): arith.h gd_qnan.h
|
||||
|
||||
arith.h: arithchk.c
|
||||
$(CC) $(CFLAGS) -o arithchk arithchk.c || \
|
||||
$(CC) -DNO_LONG_LONG $(CFLAGS) -o arithchk arithchk.c
|
||||
./arithchk > arith.h
|
||||
mkdir -p $(includedir)
|
||||
$(CC) $(CFLAGS) -o $(prefix)/arithchk $< || \
|
||||
$(CC) -DNO_LONG_LONG $(CFLAGS) -o $(prefix)/arithchk $<
|
||||
$(prefix)/arithchk > $(includedir)/$@
|
||||
rm -f $(prefix)/arithchk
|
||||
|
||||
gd_qnan.h: arith.h qnan.c
|
||||
$(CC) $(CFLAGS) -o qnan qnan.c
|
||||
./qnan >gd_qnan.h
|
||||
gd_qnan.h: qnan.c arith.h
|
||||
$(CC) $(CFLAGS) -o $(prefix)/qnan -I$(includedir) $<
|
||||
$(prefix)/qnan > $(includedir)/$@
|
||||
rm -f $(prefix)/qnan
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
|
|
|||
15
main.cc
15
main.cc
|
|
@ -410,10 +410,10 @@ int main(int argc, char * argv[], char * envp[])
|
|||
try {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
ledger::tracing_active = true;
|
||||
|
||||
#if DEBUG_LEVEL < BETA
|
||||
ledger::do_cleanup = false;
|
||||
#else
|
||||
ledger::tracing_active = true;
|
||||
#endif
|
||||
TRACE_PUSH(main, "Ledger starting");
|
||||
|
||||
|
|
@ -443,11 +443,12 @@ int main(int argc, char * argv[], char * envp[])
|
|||
|
||||
TRACE_POP(main, "Ledger done");
|
||||
|
||||
#if DEBUG_LEVEL >= BETA
|
||||
DEBUG_IF("ledger.trace.memory") {
|
||||
report_memory(std::cout);
|
||||
}
|
||||
|
||||
ledger::tracing_active = false;
|
||||
#endif
|
||||
|
||||
return status;
|
||||
}
|
||||
|
|
@ -460,7 +461,9 @@ int main(int argc, char * argv[], char * envp[])
|
|||
err->reveal_context(std::cerr, "Error");
|
||||
std::cerr << err->what() << std::endl;
|
||||
delete err;
|
||||
#if DEBUG_LEVEL >= BETA
|
||||
ledger::tracing_active = false;
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
catch (fatal * err) {
|
||||
|
|
@ -472,17 +475,23 @@ int main(int argc, char * argv[], char * envp[])
|
|||
err->reveal_context(std::cerr, "Fatal");
|
||||
std::cerr << err->what() << std::endl;
|
||||
delete err;
|
||||
#if DEBUG_LEVEL >= BETA
|
||||
ledger::tracing_active = false;
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
catch (const std::exception& err) {
|
||||
std::cout.flush();
|
||||
std::cerr << "Error: " << err.what() << std::endl;
|
||||
#if DEBUG_LEVEL >= BETA
|
||||
ledger::tracing_active = false;
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
catch (int status) {
|
||||
#if DEBUG_LEVEL >= BETA
|
||||
ledger::tracing_active = false;
|
||||
#endif
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#include "textual.h"
|
||||
#include "session.h"
|
||||
#include "timing.h"
|
||||
#include "util.h"
|
||||
#include "acconf.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue