X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libdecnumber%2FMakefile.in;h=18e0ed65a1423a0d4236a9b46f55ab1263047613;hb=41ab2f9b7b6173bf8ae2dc4d78c07ac17012c4c6;hp=6424c3857deab6fbe29001addd49ddb8d22452da;hpb=0b51ce00751290f667de07ef28240a5af946bd91;p=deliverable%2Fbinutils-gdb.git diff --git a/libdecnumber/Makefile.in b/libdecnumber/Makefile.in index 6424c3857d..18e0ed65a1 100644 --- a/libdecnumber/Makefile.in +++ b/libdecnumber/Makefile.in @@ -1,7 +1,7 @@ # @configure_input@ # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile.in -# Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +# Copyright (C) 2005-2018 Free Software Foundation, Inc. #This file is part of GCC. @@ -40,8 +40,11 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ PACKAGE = @PACKAGE@ +PICFLAG = @PICFLAG@ RANLIB = @RANLIB@ SHELL = @SHELL@ +objext = @OBJEXT@ +NOLTO_FLAGS = @nolto_flags@ datarootdir = @datarootdir@ datadir = @datadir@ @@ -56,12 +59,15 @@ enable_decimal_float= @enable_decimal_float@ INCLUDES = -I$(srcdir) -I. -ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) +ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(NOLTO_FLAGS) $(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 \ @@ -117,38 +123,38 @@ $(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 libdecnumber.a $(srcdir)/autom4te.cache @@ -163,6 +169,8 @@ maintainer-clean: distclean @echo "it deletes files that may require special tools to rebuild." -rm -f $(srcdir)/configure $(srcdir)/aclocal.m4 +TAGS: + check: installcheck: dvi: @@ -183,7 +191,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.