summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.in4
-rw-r--r--cxx/Makefile.in9
2 files changed, 6 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in
index 3bcb58b73..a299395d5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -406,8 +406,8 @@ SCANF_OBJECTS = \
# no $U for C++ files
CXX_OBJECTS = \
- cxx/isfuns.lo cxx/ismpf.lo cxx/ismpq.lo cxx/ismpz.lo \
- cxx/osdoprnti.lo cxx/osfuns.lo \
+ cxx/isfuns.lo cxx/ismpf.lo cxx/ismpq.lo cxx/ismpz.lo cxx/ismpznw.lo \
+ cxx/osdoprnti.lo cxx/osfuns.lo \
cxx/osmpf.lo cxx/osmpq.lo cxx/osmpz.lo
diff --git a/cxx/Makefile.in b/cxx/Makefile.in
index 49fac5da7..cacaf7e75 100644
--- a/cxx/Makefile.in
+++ b/cxx/Makefile.in
@@ -14,7 +14,7 @@
@SET_MAKE@
-# Copyright 2001, 2002 Free Software Foundation, Inc.
+# Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
@@ -201,9 +201,8 @@ INCLUDES = -D__GMP_WITHIN_GMPXX -I$(top_srcdir)
@WANT_CXX_TRUE@noinst_LTLIBRARIES = libcxx.la
-# osfuns.cc is handled from the top-level Makefile.am
libcxx_la_SOURCES = \
- isfuns.cc ismpf.cc ismpq.cc ismpz.cc \
+ isfuns.cc ismpf.cc ismpq.cc ismpz.cc ismpznw.cc \
osdoprnti.cc osfuns.cc osmpf.cc osmpq.cc osmpz.cc
subdir = cxx
@@ -214,8 +213,8 @@ LTLIBRARIES = $(noinst_LTLIBRARIES)
libcxx_la_LDFLAGS =
libcxx_la_LIBADD =
-am_libcxx_la_OBJECTS = isfuns.lo ismpf.lo ismpq.lo ismpz.lo osdoprnti.lo \
- osfuns.lo osmpf.lo osmpq.lo osmpz.lo
+am_libcxx_la_OBJECTS = isfuns.lo ismpf.lo ismpq.lo ismpz.lo ismpznw.lo \
+ osdoprnti.lo osfuns.lo osmpf.lo osmpq.lo osmpz.lo
libcxx_la_OBJECTS = $(am_libcxx_la_OBJECTS)
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)