2005-11-29 05:09:41 +01:00
|
|
|
# @configure_input@
|
|
|
|
# Makefile for libdecnumber. Run 'configure' to generate Makefile from Makefile.in
|
|
|
|
|
|
|
|
# Copyright (C) 2005 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
#This file is part of GCC.
|
|
|
|
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 00:50:48 +01:00
|
|
|
#GCC is free software; you can redistribute it and/or modify
|
2005-11-29 05:09:41 +01:00
|
|
|
#it under the terms of the GNU General Public License as published by
|
|
|
|
#the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
#any later version.
|
|
|
|
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 00:50:48 +01:00
|
|
|
#GCC is distributed in the hope that it will be useful,
|
2005-11-29 05:09:41 +01:00
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
|
|
|
|
#You should have received a copy of the GNU General Public License
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 00:50:48 +01:00
|
|
|
#along with GCC; see the file COPYING. If not, write to
|
2005-11-29 05:09:41 +01:00
|
|
|
#the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
#Boston MA 02110-1301, USA.
|
|
|
|
|
|
|
|
@SET_MAKE@
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
top_builddir = .
|
|
|
|
VPATH = @srcdir@
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
AR = ar
|
|
|
|
ARFLAGS = cru
|
|
|
|
ACLOCAL = @ACLOCAL@
|
|
|
|
AUTOCONF = @AUTOCONF@
|
|
|
|
AUTOHEADER = @AUTOHEADER@
|
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
|
|
|
|
CPP = @CPP@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBICONV = @LIBICONV@
|
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
SHELL = @SHELL@
|
|
|
|
|
|
|
|
datadir = @datadir@
|
|
|
|
exec_prefix = @prefix@
|
|
|
|
libdir = @libdir@
|
|
|
|
localedir = $(datadir)/locale
|
|
|
|
prefix = @prefix@
|
|
|
|
|
|
|
|
INCLUDES = -I$(srcdir) -I.
|
|
|
|
|
|
|
|
ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS)
|
|
|
|
|
|
|
|
libdecnumber_a_OBJS = decNumber.o decContext.o decUtility.o \
|
|
|
|
decimal32.o decimal64.o decimal128.o
|
|
|
|
|
|
|
|
libdecnumber_a_SOURCES = decContext.c decContext.h decDPD.h \
|
2005-12-01 06:20:39 +01:00
|
|
|
decNumber.c decNumber.h decNumberLocal.h \
|
2005-11-29 05:09:41 +01:00
|
|
|
decUtility.c decUtility.h \
|
2006-11-21 21:22:18 +01:00
|
|
|
decimal128.c decimal128.h decimal32.c decimal32.h \
|
2005-11-29 05:09:41 +01:00
|
|
|
decimal64.c decimal64.h
|
|
|
|
|
|
|
|
all: libdecnumber.a
|
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .o .obj
|
|
|
|
|
|
|
|
libdecnumber.a: $(libdecnumber_a_OBJS)
|
|
|
|
-rm -f $@
|
|
|
|
$(AR) $(ARFLAGS) $@ $(libdecnumber_a_OBJS)
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
# Rules to rebuild the configuration
|
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in config.status
|
|
|
|
$(SHELL) ./config.status Makefile
|
|
|
|
|
|
|
|
config.status: $(srcdir)/configure
|
|
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
|
|
|
|
$(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
|
|
|
|
cd $(srcdir) && $(AUTOCONF)
|
|
|
|
|
|
|
|
$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/acx.m4 \
|
|
|
|
$(srcdir)/../config/warnings.m4 \
|
|
|
|
$(srcdir)/configure.ac
|
|
|
|
cd $(srcdir) && $(ACLOCAL) -I ../config
|
|
|
|
|
|
|
|
config.h: stamp-h1
|
|
|
|
test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
|
|
|
|
|
|
|
|
stamp-h1: $(srcdir)/config.in config.status
|
|
|
|
-rm -f stamp-h1
|
|
|
|
$(SHELL) ./config.status config.h
|
|
|
|
|
|
|
|
$(srcdir)/config.in: @MAINT@ $(srcdir)/configure
|
|
|
|
cd $(srcdir) && $(AUTOHEADER)
|
|
|
|
-rm -f stamp-h1
|
|
|
|
|
|
|
|
# Dependencies.
|
|
|
|
|
|
|
|
decContext.o: decContext.c decContext.h decNumberLocal.h
|
|
|
|
decNumber.o: decNumber.c decNumber.h decContext.h decNumberLocal.h
|
|
|
|
decimal32.o: decimal32.c decNumber.h decContext.h decNumberLocal.h \
|
|
|
|
decimal32.h decUtility.h
|
|
|
|
decimal64.o: decimal64.c decNumber.h decContext.h decNumberLocal.h \
|
|
|
|
decimal64.h decUtility.h
|
|
|
|
decimal128.o: decimal128.c decNumber.h decNumberLocal.h decimal128.h \
|
|
|
|
decUtility.h
|
|
|
|
|
|
|
|
# Other miscellaneous targets.
|
|
|
|
|
|
|
|
mostlyclean:
|
|
|
|
-rm -f *.o
|
|
|
|
|
|
|
|
clean: mostlyclean
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 00:50:48 +01:00
|
|
|
-rm -rf makedepend$(EXEEXT) libdecnumber.a $(srcdir)/autom4te.cache
|
2005-11-29 05:09:41 +01:00
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
-rm -f config.h stamp-h1 config.status config.cache config.log \
|
|
|
|
configure.lineno configure.status.lineno Makefile localedir.h \
|
|
|
|
localedir.hs
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
check:
|
|
|
|
installcheck:
|
|
|
|
dvi:
|
2006-10-11 01:48:09 +02:00
|
|
|
pdf:
|
2005-11-29 05:09:41 +01:00
|
|
|
html:
|
|
|
|
info:
|
|
|
|
install-info:
|
2007-03-02 01:01:53 +01:00
|
|
|
install-pdf:
|
2005-11-29 05:09:41 +01:00
|
|
|
install-man:
|
2006-05-24 03:29:29 +02:00
|
|
|
install-html:
|
2005-11-29 05:09:41 +01:00
|
|
|
install:
|
|
|
|
|
|
|
|
.PHONY: installdirs install install-strip mostlyclean clean distclean \
|
2006-10-11 01:48:09 +02:00
|
|
|
maintainer-clean check installcheck dvi pdf html info install-info \
|
2007-03-02 01:01:53 +01:00
|
|
|
install-pdf install-man update-po install-html
|
2005-11-29 05:09:41 +01:00
|
|
|
|
|
|
|
COMPILE = source='$<' object='$@' libtool=no $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c
|
|
|
|
|
|
|
|
# Implicit rules
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(COMPILE) $<
|
|
|
|
|
|
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
|
|
.NOEXPORT:
|