~ubuntu-branches/ubuntu/precise/code-saturne/precise

« back to all changes in this revision

Viewing changes to libple/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-24 00:00:08 UTC
  • mfrom: (6.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20111124000008-2vo99e38267942q5
Tags: 2.1.0-3
Install a missing file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------------
 
2
#   This file is part of the "Parallel Location and Exchange" library,
 
3
#   intended to provide mesh or particle-based code coupling services.
 
4
#
 
5
#   Copyright (C) 2005-2010  EDF
 
6
#
 
7
#   This library is free software; you can redistribute it and/or
 
8
#   modify it under the terms of the GNU Lesser General Public
 
9
#   License as published by the Free Software Foundation; either
 
10
#   version 2.1 of the License, or (at your option) any later version.
 
11
#
 
12
#   This library is distributed in the hope that it will be useful,
 
13
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
#   Lesser General Public License for more details.
 
16
#
 
17
#   You should have received a copy of the GNU Lesser General Public
 
18
#   License along with this library; if not, write to the Free Software
 
19
#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
20
#-------------------------------------------------------------------------------
 
21
 
 
22
AUX_DIST = build-aux/compile \
 
23
           build-aux/config.guess \
 
24
           build-aux/config.sub \
 
25
           build-aux/depcomp \
 
26
           build-aux/install-sh \
 
27
           build-aux/ltmain.sh \
 
28
           build-aux/missing \
 
29
           m4/libtool.m4 \
 
30
           m4/lt~obsolete.m4 \
 
31
           m4/ltoptions.m4 \
 
32
           m4/ltsugar.m4 \
 
33
           m4/ltversion.m4
 
34
 
 
35
MAINTAINERCLEANFILES = aclocal.m4 configure $(AUX_DIST)
 
36
 
 
37
SUBDIRS = src tests doc
 
38
 
 
39
EXTRA_DIST = m4/ple_config_info.m4 \
 
40
             m4/ple_config_publ.m4 \
 
41
             m4/ple_mpi.m4 \
 
42
             m4/ple_types.m4 \
 
43
             config/ple_auto_flags.sh \
 
44
             sbin/backup \
 
45
             sbin/bootstrap \
 
46
             sbin/clean \
 
47
             sbin/rmb
 
48
 
 
49
# One adds the examples sub-directories and get rid of the .svn
 
50
# directories with a dist-hook. The reason for this trick is that
 
51
# the number of extra files or patches can grow and change a lot.
 
52
EXTRA_DIST += examples
 
53
 
 
54
bin_SCRIPTS = ple-config
 
55
 
 
56
# Install man pages
 
57
 
 
58
dist_man_MANS = \
 
59
doc/manpages/ple-config.1
 
60
 
 
61
configincludedir = $(includedir)
 
62
nodist_configinclude_HEADERS = ple_config.h
 
63
 
 
64
nodist_noinst_HEADERS = ple_config_priv.h
 
65
 
 
66
uninstall-local:
 
67
        rmdir $(configincludedir) || exit 0
 
68
 
 
69
DISTCLEANFILES = ple-config ple_config.h ple_config_priv.h
 
70
 
 
71
ACLOCAL_AMFLAGS = -I m4
 
72
 
 
73
install-tests:
 
74
        @cd tests ; $(MAKE) install-tests
 
75
 
 
76
uninstall-tests:
 
77
        @cd tests ; $(MAKE) uninstall-tests
 
78
 
 
79
dist-hook:
 
80
        -rm -rf `find $(distdir)/examples -name .svn`