summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/mpf/Makefile.in40
1 files changed, 25 insertions, 15 deletions
diff --git a/tests/mpf/Makefile.in b/tests/mpf/Makefile.in
index d531b7e6f..a0385706b 100644
--- a/tests/mpf/Makefile.in
+++ b/tests/mpf/Makefile.in
@@ -33,7 +33,7 @@
# along with the GNU MP Library; see the file COPYING.LIB. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA 02111-1307, USA.
-SOURCES = reuse.c t-add.c t-cmp_d.c t-cmp_si.c t-conv.c t-dm2exp.c t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c t-gsprec.c t-inp_str.c t-int_p.c t-muldiv.c t-set_si.c t-set_ui.c t-sqrt.c t-sqrt_ui.c t-sub.c t-trunc.c
+SOURCES = reuse.c t-add.c t-cmp_d.c t-cmp_si.c t-conv.c t-dm2exp.c t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c t-get_ui.c t-gsprec.c t-inp_str.c t-int_p.c t-muldiv.c t-set_si.c t-set_ui.c t-sqrt.c t-sqrt_ui.c t-sub.c t-trunc.c
srcdir = @srcdir@
top_srcdir = @top_srcdir@
@@ -61,9 +61,9 @@ check_PROGRAMS = t-add$(EXEEXT) t-sub$(EXEEXT) t-conv$(EXEEXT) \
t-sqrt$(EXEEXT) t-sqrt_ui$(EXEEXT) t-muldiv$(EXEEXT) \
t-dm2exp$(EXEEXT) reuse$(EXEEXT) t-cmp_d$(EXEEXT) \
t-cmp_si$(EXEEXT) t-fits$(EXEEXT) t-get_d$(EXEEXT) \
- t-get_d_2exp$(EXEEXT) t-get_si$(EXEEXT) t-gsprec$(EXEEXT) \
- t-inp_str$(EXEEXT) t-int_p$(EXEEXT) t-set_si$(EXEEXT) \
- t-set_ui$(EXEEXT) t-trunc$(EXEEXT)
+ t-get_d_2exp$(EXEEXT) t-get_si$(EXEEXT) t-get_ui$(EXEEXT) \
+ t-gsprec$(EXEEXT) t-inp_str$(EXEEXT) t-int_p$(EXEEXT) \
+ t-set_si$(EXEEXT) t-set_ui$(EXEEXT) t-trunc$(EXEEXT)
subdir = tests/mpf
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -124,6 +124,11 @@ t_get_si_OBJECTS = t-get_si$U.$(OBJEXT)
t_get_si_LDADD = $(LDADD)
t_get_si_DEPENDENCIES = $(top_builddir)/tests/libtests.la \
$(top_builddir)/libgmp.la
+t_get_ui_SOURCES = t-get_ui.c
+t_get_ui_OBJECTS = t-get_ui$U.$(OBJEXT)
+t_get_ui_LDADD = $(LDADD)
+t_get_ui_DEPENDENCIES = $(top_builddir)/tests/libtests.la \
+ $(top_builddir)/libgmp.la
t_gsprec_SOURCES = t-gsprec.c
t_gsprec_OBJECTS = t-gsprec$U.$(OBJEXT)
t_gsprec_LDADD = $(LDADD)
@@ -186,13 +191,13 @@ CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
SOURCES = reuse.c t-add.c t-cmp_d.c t-cmp_si.c t-conv.c t-dm2exp.c \
- t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c t-gsprec.c \
- t-inp_str.c t-int_p.c t-muldiv.c t-set_si.c t-set_ui.c \
- t-sqrt.c t-sqrt_ui.c t-sub.c t-trunc.c
-DIST_SOURCES = reuse.c t-add.c t-cmp_d.c t-cmp_si.c t-conv.c \
- t-dm2exp.c t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c \
+ t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c t-get_ui.c \
t-gsprec.c t-inp_str.c t-int_p.c t-muldiv.c t-set_si.c \
t-set_ui.c t-sqrt.c t-sqrt_ui.c t-sub.c t-trunc.c
+DIST_SOURCES = reuse.c t-add.c t-cmp_d.c t-cmp_si.c t-conv.c \
+ t-dm2exp.c t-fits.c t-get_d.c t-get_d_2exp.c t-get_si.c \
+ t-get_ui.c t-gsprec.c t-inp_str.c t-int_p.c t-muldiv.c \
+ t-set_si.c t-set_ui.c t-sqrt.c t-sqrt_ui.c t-sub.c t-trunc.c
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -415,6 +420,9 @@ t-get_d_2exp$(EXEEXT): $(t_get_d_2exp_OBJECTS) $(t_get_d_2exp_DEPENDENCIES)
t-get_si$(EXEEXT): $(t_get_si_OBJECTS) $(t_get_si_DEPENDENCIES)
@rm -f t-get_si$(EXEEXT)
$(LINK) $(t_get_si_LDFLAGS) $(t_get_si_OBJECTS) $(t_get_si_LDADD) $(LIBS)
+t-get_ui$(EXEEXT): $(t_get_ui_OBJECTS) $(t_get_ui_DEPENDENCIES)
+ @rm -f t-get_ui$(EXEEXT)
+ $(LINK) $(t_get_ui_LDFLAGS) $(t_get_ui_OBJECTS) $(t_get_ui_LDADD) $(LIBS)
t-gsprec$(EXEEXT): $(t_gsprec_OBJECTS) $(t_gsprec_DEPENDENCIES)
@rm -f t-gsprec$(EXEEXT)
$(LINK) $(t_gsprec_LDFLAGS) $(t_gsprec_OBJECTS) $(t_gsprec_LDADD) $(LIBS)
@@ -485,6 +493,8 @@ t-get_d_2exp_.c: t-get_d_2exp.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-get_d_2exp.c; then echo $(srcdir)/t-get_d_2exp.c; else echo t-get_d_2exp.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > $@ || rm -f $@
t-get_si_.c: t-get_si.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-get_si.c; then echo $(srcdir)/t-get_si.c; else echo t-get_si.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > $@ || rm -f $@
+t-get_ui_.c: t-get_ui.c $(ANSI2KNR)
+ $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-get_ui.c; then echo $(srcdir)/t-get_ui.c; else echo t-get_ui.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > $@ || rm -f $@
t-gsprec_.c: t-gsprec.c $(ANSI2KNR)
$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) `if test -f $(srcdir)/t-gsprec.c; then echo $(srcdir)/t-gsprec.c; else echo t-gsprec.c; fi` | sed 's/^# \([0-9]\)/#line \1/' | $(ANSI2KNR) > $@ || rm -f $@
t-inp_str_.c: t-inp_str.c $(ANSI2KNR)
@@ -510,12 +520,12 @@ t-cmp_d_.$(OBJEXT) t-cmp_d_.lo t-cmp_si_.$(OBJEXT) t-cmp_si_.lo \
t-conv_.$(OBJEXT) t-conv_.lo t-dm2exp_.$(OBJEXT) t-dm2exp_.lo \
t-fits_.$(OBJEXT) t-fits_.lo t-get_d_.$(OBJEXT) t-get_d_.lo \
t-get_d_2exp_.$(OBJEXT) t-get_d_2exp_.lo t-get_si_.$(OBJEXT) \
-t-get_si_.lo t-gsprec_.$(OBJEXT) t-gsprec_.lo t-inp_str_.$(OBJEXT) \
-t-inp_str_.lo t-int_p_.$(OBJEXT) t-int_p_.lo t-muldiv_.$(OBJEXT) \
-t-muldiv_.lo t-set_si_.$(OBJEXT) t-set_si_.lo t-set_ui_.$(OBJEXT) \
-t-set_ui_.lo t-sqrt_.$(OBJEXT) t-sqrt_.lo t-sqrt_ui_.$(OBJEXT) \
-t-sqrt_ui_.lo t-sub_.$(OBJEXT) t-sub_.lo t-trunc_.$(OBJEXT) \
-t-trunc_.lo : $(ANSI2KNR)
+t-get_si_.lo t-get_ui_.$(OBJEXT) t-get_ui_.lo t-gsprec_.$(OBJEXT) \
+t-gsprec_.lo t-inp_str_.$(OBJEXT) t-inp_str_.lo t-int_p_.$(OBJEXT) \
+t-int_p_.lo t-muldiv_.$(OBJEXT) t-muldiv_.lo t-set_si_.$(OBJEXT) \
+t-set_si_.lo t-set_ui_.$(OBJEXT) t-set_ui_.lo t-sqrt_.$(OBJEXT) \
+t-sqrt_.lo t-sqrt_ui_.$(OBJEXT) t-sqrt_ui_.lo t-sub_.$(OBJEXT) \
+t-sub_.lo t-trunc_.$(OBJEXT) t-trunc_.lo : $(ANSI2KNR)
mostlyclean-libtool:
-rm -f *.lo