1*03a78d15Sespie## Makefile for the math subdirectory of the GNU C++ Standard library.
2*03a78d15Sespie##
3*03a78d15Sespie## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
4*03a78d15Sespie## Free Software Foundation, Inc.
5*03a78d15Sespie##
6*03a78d15Sespie## This file is part of the libstdc++ version 3 distribution.
7*03a78d15Sespie## Process this file with automake to produce Makefile.in.
8*03a78d15Sespie
9*03a78d15Sespie## This file is part of the GNU ISO C++ Library.  This library is free
10*03a78d15Sespie## software; you can redistribute it and/or modify it under the
11*03a78d15Sespie## terms of the GNU General Public License as published by the
12*03a78d15Sespie## Free Software Foundation; either version 2, or (at your option)
13*03a78d15Sespie## any later version.
14*03a78d15Sespie
15*03a78d15Sespie## This library is distributed in the hope that it will be useful,
16*03a78d15Sespie## but WITHOUT ANY WARRANTY; without even the implied warranty of
17*03a78d15Sespie## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*03a78d15Sespie## GNU General Public License for more details.
19*03a78d15Sespie
20*03a78d15Sespie## You should have received a copy of the GNU General Public License along
21*03a78d15Sespie## with this library; see the file COPYING.  If not, write to the Free
22*03a78d15Sespie## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23*03a78d15Sespie## USA.
24*03a78d15Sespie
25*03a78d15SespieAUTOMAKE_OPTIONS = 1.3 cygnus
26*03a78d15Sespie
27*03a78d15Sespiemkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
28*03a78d15Sespie
29*03a78d15Sespienoinst_LTLIBRARIES = libmath.la
30*03a78d15Sespie
31*03a78d15Sespielibmath_la_LIBADD = @LIBMATHOBJS@
32*03a78d15Sespie
33*03a78d15Sespielibmath_la_DEPENDENCIES = $(libmath_la_LIBADD)
34*03a78d15Sespie
35*03a78d15Sespielibmath_la_SOURCES = stubs.c
36*03a78d15Sespie
37*03a78d15Sespie# Use common includes from acinclude.m4/GLIBCPP_EXPORT_INCLUDES
38*03a78d15SespieTOPLEVEL_INCLUDES = @TOPLEVEL_INCLUDES@
39*03a78d15Sespie
40*03a78d15SespieINCLUDES = \
41*03a78d15Sespie	$(TOPLEVEL_INCLUDES)
42*03a78d15Sespie
43*03a78d15Sespie# Only compiling "C" sources in this directory.
44*03a78d15SespieLIBTOOL = @LIBTOOL@ --tag CC
45