Add prange entries in gimple-range-op.cc.
[official-gcc.git] / libdecnumber / Makefile.in
blob4704ac8c06b9f34c39972fefed2fcc982894cd72
1 # @configure_input@
2 # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile.in
4 # Copyright (C) 2005-2024 Free Software Foundation, Inc.
6 #This file is part of GCC.
8 #GCC is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 3, or (at your option)
11 #any later version.
13 #GCC is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING3. If not see
20 #<http://www.gnu.org/licenses/>.
22 @SET_MAKE@
24 srcdir = @srcdir@
25 top_builddir = .
26 VPATH = @srcdir@
27 INSTALL = @INSTALL@
28 AR = @AR@
29 ARFLAGS = cru
30 ACLOCAL = @ACLOCAL@
31 AUTOCONF = @AUTOCONF@
32 AUTOHEADER = @AUTOHEADER@
33 CC = @CC@
34 CFLAGS = @CFLAGS@
35 WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
36 CPP = @CPP@
37 CPPFLAGS = @CPPFLAGS@
38 INSTALL_DATA = @INSTALL_DATA@
39 INSTALL_PROGRAM = @INSTALL_PROGRAM@
40 LDFLAGS = @LDFLAGS@
41 LIBICONV = @LIBICONV@
42 PACKAGE = @PACKAGE@
43 PICFLAG = @PICFLAG@
44 CET_HOST_FLAGS = @CET_HOST_FLAGS@
45 RANLIB = @RANLIB@
46 SHELL = @SHELL@
47 objext = @OBJEXT@
48 NOLTO_FLAGS = @nolto_flags@
50 datarootdir = @datarootdir@
51 datadir = @datadir@
52 exec_prefix = @prefix@
53 libdir = @libdir@
54 localedir = $(datadir)/locale
55 prefix = @prefix@
57 ADDITIONAL_OBJS = @ADDITIONAL_OBJS@
59 enable_decimal_float= @enable_decimal_float@
61 INCLUDES = -I$(srcdir) -I.
63 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(NOLTO_FLAGS) $(INCLUDES) $(CPPFLAGS) \
64 $(PICFLAG) $(CET_HOST_FLAGS)
66 bid_OBJS = bid2dpd_dpd2bid.$(objext) host-ieee32.$(objext) \
67 host-ieee64.$(objext) host-ieee128.$(objext)
69 libdecnumber_a_OBJS = decNumber.$(objext) decContext.$(objext) \
70 decimal32.$(objext) decimal64.$(objext) decimal128.$(objext) \
71 $(ADDITIONAL_OBJS)
73 libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \
74 decNumber.c decNumber.h decNumberLocal.h \
75 decContextSymbols.h decDPDSymbols.h decNumberSymbols.h \
76 dpd/decimal128.c dpd/decimal128.h dpd/decimal128Symbols.h \
77 dpd/decimal32.c dpd/decimal32.h dpd/decimal32Symbols.h \
78 dpd/decimal64.c dpd/decimal64.h dpd/decimal64Symbols.h \
79 bid/decimal128.c bid/decimal128.h \
80 bid/decimal32.c bid/decimal32.h \
81 bid/decimal64.c bid/decimal64.h
83 all: libdecnumber.a
85 .SUFFIXES:
86 .SUFFIXES: .c .o .obj
88 libdecnumber.a: $(libdecnumber_a_OBJS)
89 -rm -f $@
90 $(AR) $(ARFLAGS) $@ $(libdecnumber_a_OBJS)
91 $(RANLIB) $@
93 # Rules to rebuild the configuration
95 Makefile: $(srcdir)/Makefile.in config.status
96 $(SHELL) ./config.status Makefile
98 config.status: $(srcdir)/configure
99 $(SHELL) ./config.status --recheck
101 $(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
102 cd $(srcdir) && $(AUTOCONF)
104 aclocal_deps = \
105 $(srcdir)/../config/stdint.m4 \
106 $(srcdir)/../config/warnings.m4 \
107 $(srcdir)/../config/override.m4 \
108 $(srcdir)/../config/dfp.m4 \
109 $(srcdir)/configure.ac
111 $(srcdir)/aclocal.m4: @MAINT@ $(aclocal_deps)
112 cd $(srcdir) && $(ACLOCAL) -I ../config
114 config.h: stamp-h1
115 test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
117 stamp-h1: $(srcdir)/config.in config.status
118 -rm -f stamp-h1
119 $(SHELL) ./config.status config.h
121 $(srcdir)/config.in: @MAINT@ $(srcdir)/configure
122 cd $(srcdir) && $(AUTOHEADER)
123 -rm -f stamp-h1
125 # Dependencies.
127 decContext.$(objext): decContext.c decContext.h decNumberLocal.h \
128 decContextSymbols.h
129 decNumber.$(objext): decNumber.c decNumber.h decContext.h decNumberLocal.h \
130 decNumberSymbols.h
131 decimal32.$(objext): $(srcdir)/$(enable_decimal_float)/decimal32.c \
132 $(srcdir)/$(enable_decimal_float)/decimal32.h \
133 $(srcdir)/$(enable_decimal_float)/decimal32Symbols.h \
134 decNumber.h decContext.h decNumberLocal.h
135 $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal32.c
136 decimal64.$(objext): $(srcdir)/$(enable_decimal_float)/decimal64.c \
137 $(srcdir)/$(enable_decimal_float)/decimal64.h \
138 $(srcdir)/$(enable_decimal_float)/decimal64Symbols.h \
139 decNumber.h decContext.h decNumberLocal.h
140 $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal64.c
141 decimal128.$(objext): $(srcdir)/$(enable_decimal_float)/decimal128.c \
142 $(srcdir)/$(enable_decimal_float)/decimal128.h \
143 $(srcdir)/$(enable_decimal_float)/decimal128Symbols.h\
144 $(srcdir)/$(enable_decimal_float)/decimal128Local.h\
145 decNumber.h decContext.h decNumberLocal.h
146 $(COMPILE) $(srcdir)/$(enable_decimal_float)/decimal128.c
147 bid2dpd_dpd2bid.$(objext) : $(srcdir)/bid/bid2dpd_dpd2bid.c $(srcdir)/bid/bid2dpd_dpd2bid.h
148 $(COMPILE) $(srcdir)/bid/bid2dpd_dpd2bid.c
149 host-ieee32.$(objext) : $(srcdir)/bid/host-ieee32.c $(srcdir)/bid/decimal32.h
150 $(COMPILE) $(srcdir)/bid/host-ieee32.c
151 host-ieee64.$(objext) : $(srcdir)/bid/host-ieee64.c $(srcdir)/bid/decimal64.h
152 $(COMPILE) $(srcdir)/bid/host-ieee64.c
153 host-ieee128.$(objext) : $(srcdir)/bid/host-ieee128.c $(srcdir)/bid/decimal128.h
154 $(COMPILE) $(srcdir)/bid/host-ieee128.c
155 # Other miscellaneous targets.
157 mostlyclean:
158 -rm -f *.$(objext)
160 clean: mostlyclean
161 -rm -rf libdecnumber.a $(srcdir)/autom4te.cache
163 distclean: clean
164 -rm -f config.h stamp-h1 config.status config.cache config.log \
165 configure.lineno configure.status.lineno Makefile localedir.h \
166 localedir.hs gstdint.h
168 maintainer-clean: distclean
169 @echo "This command is intended for maintainers to use"
170 @echo "it deletes files that may require special tools to rebuild."
171 -rm -f $(srcdir)/configure $(srcdir)/aclocal.m4
173 check:
174 installcheck:
175 dvi:
176 pdf:
177 html:
178 info:
179 install-info:
180 install-pdf:
181 install-dvi:
182 install-man:
183 install-html:
184 install:
186 .PHONY: installdirs install install-strip mostlyclean clean distclean \
187 maintainer-clean check installcheck dvi pdf html info install-info \
188 install-pdf install-dvi install-man update-po install-html
190 COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c
192 # Implicit rules
194 .c.$(objext):
195 $(COMPILE) $<
197 # Tell versions [3.59,3.63) of GNU make to not export all variables.
198 # Otherwise a system limit (for SysV at least) may be exceeded.
199 .NOEXPORT: