Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: libdecnumber/Makefile.in

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « libdecnumber/ChangeLog ('k') | libdecnumber/bid/bid-dpd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # @configure_input@ 1 # @configure_input@
2 # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile .in 2 # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile .in
3 3
4 # Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 4 # Copyright (C) 2005-2013 Free Software Foundation, Inc.
5 # Free Software Foundation, Inc.
6 5
7 #This file is part of GCC. 6 #This file is part of GCC.
8 7
9 #GCC is free software; you can redistribute it and/or modify 8 #GCC is free software; you can redistribute it and/or modify
10 #it under the terms of the GNU General Public License as published by 9 #it under the terms of the GNU General Public License as published by
11 #the Free Software Foundation; either version 3, or (at your option) 10 #the Free Software Foundation; either version 3, or (at your option)
12 #any later version. 11 #any later version.
13 12
14 #GCC is distributed in the hope that it will be useful, 13 #GCC is distributed in the hope that it will be useful,
15 #but WITHOUT ANY WARRANTY; without even the implied warranty of 14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 18 matching lines...) Expand all
34 CC = @CC@ 33 CC = @CC@
35 CFLAGS = @CFLAGS@ 34 CFLAGS = @CFLAGS@
36 WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@ 35 WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
37 CPP = @CPP@ 36 CPP = @CPP@
38 CPPFLAGS = @CPPFLAGS@ 37 CPPFLAGS = @CPPFLAGS@
39 INSTALL_DATA = @INSTALL_DATA@ 38 INSTALL_DATA = @INSTALL_DATA@
40 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 39 INSTALL_PROGRAM = @INSTALL_PROGRAM@
41 LDFLAGS = @LDFLAGS@ 40 LDFLAGS = @LDFLAGS@
42 LIBICONV = @LIBICONV@ 41 LIBICONV = @LIBICONV@
43 PACKAGE = @PACKAGE@ 42 PACKAGE = @PACKAGE@
43 PICFLAG = @PICFLAG@
44 RANLIB = @RANLIB@ 44 RANLIB = @RANLIB@
45 SHELL = @SHELL@ 45 SHELL = @SHELL@
46 objext = @OBJEXT@ 46 objext = @OBJEXT@
47 47
48 datarootdir = @datarootdir@ 48 datarootdir = @datarootdir@
49 datadir = @datadir@ 49 datadir = @datadir@
50 exec_prefix = @prefix@ 50 exec_prefix = @prefix@
51 libdir = @libdir@ 51 libdir = @libdir@
52 localedir = $(datadir)/locale 52 localedir = $(datadir)/locale
53 prefix = @prefix@ 53 prefix = @prefix@
54 54
55 ADDITIONAL_OBJS = @ADDITIONAL_OBJS@ 55 ADDITIONAL_OBJS = @ADDITIONAL_OBJS@
56 56
57 enable_decimal_float= @enable_decimal_float@ 57 enable_decimal_float= @enable_decimal_float@
58 58
59 INCLUDES = -I$(srcdir) -I. 59 INCLUDES = -I$(srcdir) -I.
60 60
61 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) 61 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) $(PICFLAG)
62 62
63 bid_OBJS = bid2dpd_dpd2bid.$(objext) host-ieee32.$(objext) \ 63 bid_OBJS = bid2dpd_dpd2bid.$(objext) host-ieee32.$(objext) \
64 host-ieee64.$(objext) host-ieee128.$(objext) 64 host-ieee64.$(objext) host-ieee128.$(objext)
65 65
66 libdecnumber_a_OBJS = decNumber.$(objext) decContext.$(objext) \ 66 libdecnumber_a_OBJS = decNumber.$(objext) decContext.$(objext) \
67 decimal32.$(objext) decimal64.$(objext) decimal128.$(objext) \ 67 decimal32.$(objext) decimal64.$(objext) decimal128.$(objext) \
68 $(ADDITIONAL_OBJS) 68 $(ADDITIONAL_OBJS)
69 69
70 libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \ 70 libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \
71 decNumber.c decNumber.h decNumberLocal.h \ 71 decNumber.c decNumber.h decNumberLocal.h \
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAG S) $(ALL_CFLAGS) -c 186 COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAG S) $(ALL_CFLAGS) -c
187 187
188 # Implicit rules 188 # Implicit rules
189 189
190 .c.$(objext): 190 .c.$(objext):
191 $(COMPILE) $< 191 $(COMPILE) $<
192 192
193 # Tell versions [3.59,3.63) of GNU make to not export all variables. 193 # Tell versions [3.59,3.63) of GNU make to not export all variables.
194 # Otherwise a system limit (for SysV at least) may be exceeded. 194 # Otherwise a system limit (for SysV at least) may be exceeded.
195 .NOEXPORT: 195 .NOEXPORT:
OLDNEW
« no previous file with comments | « libdecnumber/ChangeLog ('k') | libdecnumber/bid/bid-dpd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698