OSDN Git Service

PR other/37897
[pf3gnuchains/gcc-fork.git] / libdecnumber / Makefile.in
index cebb2ff..5e1cabf 100644 (file)
@@ -1,7 +1,7 @@
 # @configure_input@
 # Makefile for libdecnumber.  Run 'configure' to generate Makefile from Makefile.in
 
-# Copyright (C) 2005 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007 Free Software Foundation, Inc.
 
 #This file is part of GCC.
 
@@ -44,24 +44,35 @@ PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@
 SHELL = @SHELL@
 
+datarootdir = @datarootdir@
 datadir = @datadir@
 exec_prefix = @prefix@
 libdir = @libdir@
 localedir = $(datadir)/locale
 prefix = @prefix@
 
+ADDITIONAL_OBJS = @ADDITIONAL_OBJS@
+
+enable_decimal_float= @enable_decimal_float@
+
 INCLUDES = -I$(srcdir) -I.
 
 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS)
 
-libdecnumber_a_OBJS = decNumber.o decContext.o decUtility.o \
-       decimal32.o decimal64.o decimal128.o
+bid_OBJS = bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
+
+libdecnumber_a_OBJS = decNumber.o decContext.o \
+       decimal32.o decimal64.o decimal128.o $(ADDITIONAL_OBJS)
 
 libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \
        decNumber.c decNumber.h decNumberLocal.h \
-       decUtility.c decUtility.h \
-       decRound.c decimal128.c decimal128.h decimal32.c decimal32.h \
-       decimal64.c decimal64.h
+       decContextSymbols.h decDPDSymbols.h decNumberSymbols.h \
+       dpd/decimal128.c dpd/decimal128.h dpd/decimal128Symbols.h \
+       dpd/decimal32.c dpd/decimal32.h dpd/decimal32Symbols.h \
+       dpd/decimal64.c dpd/decimal64.h dpd/decimal64Symbols.h \
+       bid/decimal128.c bid/decimal128.h \
+       bid/decimal32.c bid/decimal32.h \
+       bid/decimal64.c bid/decimal64.h
 
 all: libdecnumber.a
 
@@ -84,8 +95,8 @@ config.status: $(srcdir)/configure
 $(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
        cd $(srcdir) && $(AUTOCONF)
 
-$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/acx.m4 \
-       $(srcdir)/../config/warnings.m4 \
+$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/stdint.m4 \
+       $(srcdir)/../config/warnings.m4 $(srcdir)/../config/override.m4 \
        $(srcdir)/configure.ac
        cd $(srcdir) && $(ACLOCAL) -I ../config
 
@@ -102,15 +113,34 @@ $(srcdir)/config.in: @MAINT@ $(srcdir)/configure
 
 # Dependencies.
 
-decContext.o: decContext.c decContext.h decNumberLocal.h
-decNumber.o:  decNumber.c decNumber.h decContext.h decNumberLocal.h
-decimal32.o:  decimal32.c decNumber.h decContext.h decNumberLocal.h \
-   decimal32.h decUtility.h
-decimal64.o:  decimal64.c decNumber.h decContext.h decNumberLocal.h \
-   decimal64.h decUtility.h
-decimal128.o: decimal128.c decNumber.h decNumberLocal.h decimal128.h \
-   decUtility.h
-
+decContext.o: decContext.c decContext.h decNumberLocal.h \
+       decContextSymbols.h
+decNumber.o:  decNumber.c decNumber.h decContext.h decNumberLocal.h \
+       decNumberSymbols.h
+decimal32.o:  $(srcdir)/$(enable_decimal_float)/decimal32.c \
+   $(srcdir)/$(enable_decimal_float)/decimal32.h \
+   $(srcdir)/$(enable_decimal_float)/decimal32Symbols.h \
+   decNumber.h decContext.h decNumberLocal.h
+       $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal32.c
+decimal64.o:  $(srcdir)/$(enable_decimal_float)/decimal64.c \
+   $(srcdir)/$(enable_decimal_float)/decimal64.h \
+   $(srcdir)/$(enable_decimal_float)/decimal64Symbols.h \
+   decNumber.h decContext.h decNumberLocal.h
+       $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal64.c
+decimal128.o:  $(srcdir)/$(enable_decimal_float)/decimal128.c \
+   $(srcdir)/$(enable_decimal_float)/decimal128.h \
+   $(srcdir)/$(enable_decimal_float)/decimal128Symbols.h\
+   $(srcdir)/$(enable_decimal_float)/decimal128Local.h\
+   decNumber.h decContext.h decNumberLocal.h 
+       $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal128.c
+bid2dpd_dpd2bid.o : $(srcdir)/bid/bid2dpd_dpd2bid.c $(srcdir)/bid/bid2dpd_dpd2bid.h
+       $(COMPILE) $(srcdir)/bid/bid2dpd_dpd2bid.c
+host-ieee32.o : $(srcdir)/bid/host-ieee32.c $(srcdir)/bid/decimal32.h
+       $(COMPILE) $(srcdir)/bid/host-ieee32.c
+host-ieee64.o : $(srcdir)/bid/host-ieee64.c $(srcdir)/bid/decimal64.h
+       $(COMPILE) $(srcdir)/bid/host-ieee64.c
+host-ieee128.o : $(srcdir)/bid/host-ieee128.c $(srcdir)/bid/decimal128.h
+       $(COMPILE) $(srcdir)/bid/host-ieee128.c
 # Other miscellaneous targets.
 
 mostlyclean:
@@ -122,7 +152,7 @@ clean: mostlyclean
 distclean: clean
        -rm -f config.h stamp-h1 config.status config.cache config.log \
          configure.lineno configure.status.lineno Makefile localedir.h \
-         localedir.hs
+         localedir.hs gstdint.h
 
 maintainer-clean: distclean
        @echo "This command is intended for maintainers to use"
@@ -132,15 +162,18 @@ maintainer-clean: distclean
 check:
 installcheck:
 dvi:
+pdf:
 html:
 info:
 install-info:
+install-pdf:
 install-man:
+install-html:
 install:
 
 .PHONY: installdirs install install-strip mostlyclean clean distclean \
-  maintainer-clean check installcheck dvi html info install-info \
-  install-man update-po
+  maintainer-clean check installcheck dvi pdf html info install-info \
+  install-pdf install-man update-po install-html
 
 COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c