1228c7b6bd
* src/Makefile.am (sources): Remove complex.cc, complexf.cc and complexl.cc from list. * src/Makefile.in: Regenerate. * src/complex.cc: Remove. * src/complexf.cc: Likewise. * src/complexl.cc: Likewise. * libmath/Makefile.am (EXTRA_LONG_DOUBLE_yes): Remove csqrtl.c (EXTRA_DIST): Remove csqrt.c and csqrtf.c. * libmath/Makefile.in: Regenerate. * libmath/complex-stub.h: Remove. * libmath/csqrt.c: Likewise. * libmath/sqrtf.c: Likewise. * libmath/sqrtl.c: Likewise. * libmath/mathconf.h: Remove <complex.h> and "complex-stub.h" #inclusion. * include/bits/std_complex.h (sqrt<>): Define primary template. (complex<>): Remove sqrt friend declarations. * configure.in: Initialize with src/ios.cc. * configure: Regenerate. * acinclude.m4: Remove check for csqrt* and <complex.h> * aclocal.m4: Regenerate. * config.h.in: Regenerate. * Makefile.in: Regenerate. From-SVN: r38409
59 lines
1.9 KiB
Makefile
59 lines
1.9 KiB
Makefile
## Makefile for the math subdirectory of the GNU C++ Standard library.
|
|
##
|
|
## Copyright (C) 1997, 1998, 1999, 2000 Cygnus Solutions
|
|
##
|
|
## This file is part of the libstdc++ version 3 distribution.
|
|
## Process this file with automake to produce Makefile.in.
|
|
|
|
## This file is part of the GNU ISO C++ Library. This library is free
|
|
## software; you can redistribute it and/or modify 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.
|
|
|
|
## This library is distributed in the hope that it will be useful,
|
|
## 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 along
|
|
## with this library; see the file COPYING. If not, write to the Free
|
|
## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
## USA.
|
|
|
|
AUTOMAKE_OPTIONS = 1.3 cygnus
|
|
|
|
noinst_LTLIBRARIES = libmath.la
|
|
|
|
EXTRA_LONG_DOUBLE_yes = \
|
|
hypotl.c signbitl.c
|
|
|
|
EXTRA_DIST = \
|
|
hypot.c hypotf.c atan2f.c expf.c \
|
|
$(EXTRA_LONG_DOUBLE_yes)
|
|
|
|
libmath_la_LIBADD = \
|
|
@LIBMATHOBJS@ \
|
|
$(EXTRA_LONG_DOUBLE_$(USE_COMPLEX_LONG_DOUBLE))
|
|
|
|
libmath_la_DEPENDENCIES = $(libmath_la_LIBADD)
|
|
|
|
libmath_la_SOURCES = \
|
|
signbit.c signbitf.c
|
|
|
|
LINK = $(LIBTOOL) --mode=link "$(CCLD)" $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
# Use common includes from acinclude.m4/GLIBCPP_EXPORT_INCLUDES
|
|
GLIBCPP_INCLUDE_DIR = @GLIBCPP_INCLUDE_DIR@
|
|
C_INCLUDE_DIR = @C_INCLUDE_DIR@
|
|
TOPLEVEL_INCLUDES = @TOPLEVEL_INCLUDES@
|
|
LIBMATH_INCLUDES = @LIBMATH_INCLUDES@
|
|
LIBSUPCXX_INCLUDES = @LIBSUPCXX_INCLUDES@
|
|
LIBIO_INCLUDES = @LIBIO_INCLUDES@
|
|
CSHADOW_INCLUDES = @CSHADOW_INCLUDES@
|
|
|
|
INCLUDES = \
|
|
-I$(GLIBCPP_INCLUDE_DIR) -I$(top_builddir)/include \
|
|
$(TOPLEVEL_INCLUDES)
|
|
|