X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libdecnumber%2FMakefile.in;h=8dbada97b667b680f3351258bb6c4bc26d7d7326;hb=245d2e3fe8d9ff35c65ed1329609fb7e59034877;hp=00b16b297dd423d1f74aac7827dbf0d6a7a0d9f7;hpb=7d1e3eba1dbdfe8bab4f2edb424c5271a8e561f6;p=deliverable%2Fbinutils-gdb.git diff --git a/libdecnumber/Makefile.in b/libdecnumber/Makefile.in index 00b16b297d..8dbada97b6 100644 --- a/libdecnumber/Makefile.in +++ b/libdecnumber/Makefile.in @@ -1,13 +1,13 @@ # @configure_input@ # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile.in -# Copyright (C) 2005, 2007 Free Software Foundation, Inc. +# Copyright (C) 2005-2013 Free Software Foundation, Inc. #This file is part of GCC. #GCC 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) +#the Free Software Foundation; either version 3, or (at your option) #any later version. #GCC is distributed in the hope that it will be useful, @@ -16,9 +16,8 @@ #GNU General Public License for more details. #You should have received a copy of the GNU General Public License -#along with GCC; see the file COPYING. If not, write to -#the Free Software Foundation, 51 Franklin Street, Fifth Floor, -#Boston MA 02110-1301, USA. +#along with GCC; see the file COPYING3. If not see +#. @SET_MAKE@ @@ -41,9 +40,12 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ PACKAGE = @PACKAGE@ +PICFLAG = @PICFLAG@ RANLIB = @RANLIB@ SHELL = @SHELL@ +objext = @OBJEXT@ +datarootdir = @datarootdir@ datadir = @datadir@ exec_prefix = @prefix@ libdir = @libdir@ @@ -56,12 +58,14 @@ enable_decimal_float= @enable_decimal_float@ INCLUDES = -I$(srcdir) -I. -ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) +ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) $(PICFLAG) -bid_OBJS = bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o +bid_OBJS = bid2dpd_dpd2bid.$(objext) host-ieee32.$(objext) \ + host-ieee64.$(objext) host-ieee128.$(objext) -libdecnumber_a_OBJS = decNumber.o decContext.o \ - decimal32.o decimal64.o decimal128.o $(ADDITIONAL_OBJS) +libdecnumber_a_OBJS = decNumber.$(objext) decContext.$(objext) \ + decimal32.$(objext) decimal64.$(objext) decimal128.$(objext) \ + $(ADDITIONAL_OBJS) libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \ decNumber.c decNumber.h decNumberLocal.h \ @@ -94,9 +98,14 @@ config.status: $(srcdir)/configure $(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4 cd $(srcdir) && $(AUTOCONF) -$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/stdint.m4 \ +aclocal_deps = \ + $(srcdir)/../config/stdint.m4 \ $(srcdir)/../config/warnings.m4 \ + $(srcdir)/../config/override.m4 \ + $(srcdir)/../config/dfp.m4 \ $(srcdir)/configure.ac + +$(srcdir)/aclocal.m4: @MAINT@ $(aclocal_deps) cd $(srcdir) && $(ACLOCAL) -I ../config config.h: stamp-h1 @@ -112,52 +121,54 @@ $(srcdir)/config.in: @MAINT@ $(srcdir)/configure # Dependencies. -decContext.o: decContext.c decContext.h decNumberLocal.h \ +decContext.$(objext): decContext.c decContext.h decNumberLocal.h \ decContextSymbols.h -decNumber.o: decNumber.c decNumber.h decContext.h decNumberLocal.h \ +decNumber.$(objext): decNumber.c decNumber.h decContext.h decNumberLocal.h \ decNumberSymbols.h -decimal32.o: $(srcdir)/$(enable_decimal_float)/decimal32.c \ +decimal32.$(objext): $(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 \ +decimal64.$(objext): $(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 \ +decimal128.$(objext): $(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 +bid2dpd_dpd2bid.$(objext) : $(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 +host-ieee32.$(objext) : $(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 +host-ieee64.$(objext) : $(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 +host-ieee128.$(objext) : $(srcdir)/bid/host-ieee128.c $(srcdir)/bid/decimal128.h $(COMPILE) $(srcdir)/bid/host-ieee128.c # Other miscellaneous targets. mostlyclean: - -rm -f *.o + -rm -f *.$(objext) clean: mostlyclean - -rm -rf makedepend$(EXEEXT) libdecnumber.a $(srcdir)/autom4te.cache + -rm -rf libdecnumber.a $(srcdir)/autom4te.cache 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" @echo "it deletes files that may require special tools to rebuild." -rm -f $(srcdir)/configure $(srcdir)/aclocal.m4 +TAGS: + check: installcheck: dvi: @@ -178,7 +189,7 @@ COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAG # Implicit rules -.c.o: +.c.$(objext): $(COMPILE) $< # Tell versions [3.59,3.63) of GNU make to not export all variables.