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
|
#-------------------------------------------------------------------------------
# This file is part of the "Finite Volume Mesh" library, intended to provide
# finite volume mesh and associated fields I/O and manipulation services.
#
# Copyright (C) 2004-2008 EDF
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#-------------------------------------------------------------------------------
AUX_DIST = $(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/depcomp \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/missing \
$(ac_aux_dir)/mkinstalldirs \
$(ac_aux_dir)/ltmain.sh
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config-h.in stamp-h.in $(AUX_DIST)
# SUBDIRS = intl m4 src tests po doc # (if we use GNU gettext, need: intl, m4, po)
SUBDIRS = src tests doc
#EXTRA_SUBDIRS = include
EXTRA_DIST = $(ac_aux_dir)/fvm_auto_flags.sh \
$(ac_aux_dir)/fvm_bft.m4 \
$(ac_aux_dir)/fvm_cgns.m4 \
$(ac_aux_dir)/fvm_config_info.m4 \
$(ac_aux_dir)/fvm_config_publ.m4 \
$(ac_aux_dir)/fvm_hdf5.m4 \
$(ac_aux_dir)/fvm_med.m4 \
$(ac_aux_dir)/fvm_mpi.m4 \
$(ac_aux_dir)/fvm_types.m4
bin_SCRIPTS = fvm-config
# Install man pages
dist_man_MANS = \
doc/manpages/fvm-config.1
configincludedir = $(includedir)
configinclude_HEADERS = fvm_config.h fvm_config_priv.h
uninstall-local:
rmdir $(configincludedir)
DISTCLEANFILES = fvm-config fvm_config.h fvm_config_priv.h
ACLOCAL_AMFLAGS = -I config
install-tests:
@cd tests ; $(MAKE) install-tests
uninstall-tests:
@cd tests ; $(MAKE) uninstall-tests
|