1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
## process this file with automake to produce Makefile.in
#
# This file is part of Rheolef.
#
# Copyright (C) 2000-2009 Pierre Saramito
#
# Rheolef 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 of the License, or
# (at your option) any later version.
#
# Rheolef 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 Rheolef; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
include ${top_builddir}/config/config.mk
# -----------------------------------------------------------------------------
# the file set
# -----------------------------------------------------------------------------
pkginclude_HEADERS = bigfloat.h all_float_io.h
#noinst_HEADERS = stamp-symlink.in
lib_LTLIBRARIES = libbigfloat.la
libbigfloat_la_LDFLAGS = ${LIBTOOL_VERSION_INFO} ${LIBTOOL_RELEASE}
libbigfloat_la_SOURCES = bigfloat.h bigfloat.cc
TESTS = bigfloat_tst.sh
DIGITS10 = 60
TESTS_ENVIRONMENT = \
DMALLOC_OPTIONS="${DMALLOC_OPTIONS}"; export DMALLOC_OPTIONS; \
bash
check_PROGRAMS = bigfloat_tst bigfloat_io_tst
bigfloat_tst_SOURCES = bigfloat_tst.cc
bigfloat_io_tst_SOURCES = bigfloat_io_tst.cc
OUT_VALID = \
bigfloat_tst.out-valid
EXTRA_DIST = Makefile.am A_LIRE ${TESTS} ${OUT_VALID}
CLEANFILES = *.ii *.ii_pic *.da *.gcov *.[oa1359] KCC_files/* KCC_pic/* \
libbigfloat.la stamp-symlink.in ${man_MANS} ${DOC_TEXI}
CVSIGNORE = Makefile.in stamp-symlink.in \
$(srcdir)/Makefile.in
WCIGNORE = ${OUT_VALID} A_LIRE
LICENSEIGNORE = bigfloat_tst.out-valid
# -----------------------------------------------------------------------------
# extra rules
# -----------------------------------------------------------------------------
LDADD = $(LDADD_FLOAT)
AM_CPPFLAGS = -DDIGITS10=$(DIGITS10) -I${top_builddir}/include @INCLUDES_CLN@
BUILT_SOURCES = \
stamp-symlink.in
stamp-symlink.in: Makefile.am
@$(MKSYMLINK) $(pkginclude_HEADERS)
@touch stamp-symlink.in
|