2 # Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile.in
4 # Copyright (C) 2005, 2007 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 2, or (at your option)
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 COPYING. If not, write to
20 #the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 #Boston MA 02110-1301, USA.
33 AUTOHEADER = @AUTOHEADER@
36 WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
39 INSTALL_DATA = @INSTALL_DATA@
40 INSTALL_PROGRAM = @INSTALL_PROGRAM@
48 exec_prefix = @prefix@
50 localedir = $(datadir)/locale
53 ADDITIONAL_OBJS = @ADDITIONAL_OBJS@
55 enable_decimal_float= @enable_decimal_float@
57 INCLUDES = -I$(srcdir) -I.
59 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS)
61 bid_OBJS = bid2dpd_dpd2bid.o host-ieee32.o host-ieee64.o host-ieee128.o
63 libdecnumber_a_OBJS = decNumber.o decContext.o \
64 decimal32.o decimal64.o decimal128.o $(ADDITIONAL_OBJS)
66 libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \
67 decNumber.c decNumber.h decNumberLocal.h \
68 dpd/decimal128.c dpd/decimal128.h \
69 dpd/decimal32.c dpd/decimal32.h \
70 dpd/decimal64.c dpd/decimal64.h \
71 bid/decimal128.c bid/decimal128.h \
72 bid/decimal32.c bid/decimal32.h \
73 bid/decimal64.c bid/decimal64.h
80 libdecnumber.a: $(libdecnumber_a_OBJS)
82 $(AR) $(ARFLAGS) $@ $(libdecnumber_a_OBJS)
85 # Rules to rebuild the configuration
87 Makefile: $(srcdir)/Makefile.in config.status
88 $(SHELL) ./config.status Makefile
90 config.status: $(srcdir)/configure
91 $(SHELL) ./config.status --recheck
93 $(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
94 cd $(srcdir) && $(AUTOCONF)
96 $(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/stdint.m4 \
97 $(srcdir)/../config/warnings.m4 \
98 $(srcdir)/configure.ac
99 cd $(srcdir) && $(ACLOCAL) -I ../config
102 test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
104 stamp-h1: $(srcdir)/config.in config.status
106 $(SHELL) ./config.status config.h
108 $(srcdir)/config.in: @MAINT@ $(srcdir)/configure
109 cd $(srcdir) && $(AUTOHEADER)
114 decContext.o: decContext.c decContext.h decNumberLocal.h \
116 decNumber.o: decNumber.c decNumber.h decContext.h decNumberLocal.h \
118 decimal32.o: $(enable_decimal_float)/decimal32.c \
119 $(enable_decimal_float)/decimal32.h \
120 $(enable_decimal_float)/decimal32Symbols.h \
121 decNumber.h decContext.h decNumberLocal.h
123 decimal64.o: $(enable_decimal_float)/decimal64.c \
124 $(enable_decimal_float)/decimal64.h \
125 $(enable_decimal_float)/decimal64Symbols.h \
126 decNumber.h decContext.h decNumberLocal.h
128 decimal128.o: $(enable_decimal_float)/decimal128.c \
129 $(enable_decimal_float)/decimal128.h \
130 $(enable_decimal_float)/decimal128Symbols.h\
131 $(enable_decimal_float)/decimal128Local.h\
132 decNumber.h decContext.h decNumberLocal.h
134 bid2dpd_dpd2bid.o : bid/bid2dpd_dpd2bid.c bid/bid2dpd_dpd2bid.h
136 host-ieee32.o : bid/host-ieee32.c bid/decimal32.h
138 host-ieee64.o : bid/host-ieee64.c bid/decimal64.h
140 host-ieee128.o : bid/host-ieee128.c bid/decimal128.h
142 # Other miscellaneous targets.
148 -rm -rf makedepend$(EXEEXT) libdecnumber.a $(srcdir)/autom4te.cache
151 -rm -f config.h stamp-h1 config.status config.cache config.log \
152 configure.lineno configure.status.lineno Makefile localedir.h \
155 maintainer-clean: distclean
156 @echo "This command is intended for maintainers to use"
157 @echo "it deletes files that may require special tools to rebuild."
158 -rm -f $(srcdir)/configure $(srcdir)/aclocal.m4
172 .PHONY: installdirs install install-strip mostlyclean clean distclean \
173 maintainer-clean check installcheck dvi pdf html info install-info \
174 install-pdf install-man update-po install-html
176 COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c
183 # Tell versions [3.59,3.63) of GNU make to not export all variables.
184 # Otherwise a system limit (for SysV at least) may be exceeded.