diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-15 12:55:22 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:35:33 -0400 |
commit | b27b34a76fa16fcb96632a5bf245f3876183c479 (patch) | |
tree | fe386b51289569218b776e0d7453b161f071db70 /gdtoa/Makefile.am | |
parent | b307f741c493652d64a6dde1df424c07eb698cb4 (diff) | |
download | fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.tar.gz fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.tar.bz2 fork-ledger-b27b34a76fa16fcb96632a5bf245f3876183c479.zip |
Added a reference to gdtoa, for doing expected conversion of double to amount.
Diffstat (limited to 'gdtoa/Makefile.am')
-rw-r--r-- | gdtoa/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gdtoa/Makefile.am b/gdtoa/Makefile.am new file mode 100644 index 00000000..4f4f11b7 --- /dev/null +++ b/gdtoa/Makefile.am @@ -0,0 +1,26 @@ +lib_LTLIBRARIES = libgdtoa.la + +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 \ + misc.c smisc.c strtoIQ.c strtoId.c strtoIdd.c strtoIf.c strtoIg.c \ + strtoIx.c strtoIxL.c strtod.c strtodI.c strtodg.c strtof.c strtopQ.c \ + 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 + +$(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 + +gd_qnan.h: arith.h qnan.c + $(CC) $(CFLAGS) -o qnan qnan.c + ./qnan >gd_qnan.h + +libgdtoa_la_LDFLAGS = -release 1.0 + +pkginclude_HEADERS = gdtoa.h + +CLEANFILES = arithchk qnan |