~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to examples/f95/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# examples/f95/Makefile.am for PLplot
 
2
###
 
3
### Process this file with automake to produce Makefile.in
 
4
###
 
5
# Copyright (C) 2002, 2004  Alan W. Irwin
 
6
# Copyright (C) 2004  Rafael Laboissiere
 
7
#
 
8
# This file is part of PLplot.
 
9
#
 
10
# PLplot is free software; you can redistribute it and/or modify
 
11
# it under the terms of the GNU Library General Public License as published
 
12
# by the Free Software Foundation; version 2 of the License.
 
13
#
 
14
# PLplot is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
# GNU Library General Public License for more details.
 
18
#
 
19
# You should have received a copy of the GNU Library General Public License
 
20
# along with PLplot; if not, write to the Free Software
 
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 
22
 
 
23
# x19f.f excluded from this list because the plmap and plmeridians fortran
 
24
# API is not implemented as part of the common API (and probably won't be
 
25
# for a long time because of having to work around the mapform type of
 
26
# argument for these functions).
 
27
 
 
28
f95_examples = \
 
29
        x01f.f90 \
 
30
        x02f.f90 \
 
31
        x03f.f90 \
 
32
        x04f.f90 \
 
33
        x05f.f90 \
 
34
        x06f.f90 \
 
35
        x07f.f90 \
 
36
        x08f.f90 \
 
37
        x09f.f90 \
 
38
        x10f.f90 \
 
39
        x11f.f90 \
 
40
        x12f.f90 \
 
41
        x13f.f90 \
 
42
        x14f.f90 \
 
43
        x15f.f90 \
 
44
        x16af.f90 \
 
45
        x16f.f90 \
 
46
        x17f.f90 \
 
47
        x18f.f90 \
 
48
        x19f.f90 \
 
49
        x22f.f90 \
 
50
        x23f.f90
 
51
 
 
52
AM_FCFLAGS = -I$(top_srcdir)/include $(INCLTDL) -I$(top_builddir)/bindings/f95
 
53
 
 
54
if enable_f95
 
55
 
 
56
examples_f95dir = $(DATA_DIR)/examples/f95
 
57
examples_f95_DATA = $(f95_examples) Makefile.examples
 
58
 
 
59
libplplot = $(top_builddir)/src/libplplot$(LIB_TAG).la
 
60
libplplotf95c = $(top_builddir)/bindings/f95/libplplotf95c$(LIB_TAG).la
 
61
libplplotf95 = $(top_builddir)/bindings/f95/libplplotf95$(LIB_TAG).la
 
62
 
 
63
check_PROGRAMS = \
 
64
        x01f \
 
65
        x02f \
 
66
        x03f \
 
67
        x04f \
 
68
        x05f \
 
69
        x06f \
 
70
        x07f \
 
71
        x08f \
 
72
        x09f \
 
73
        x10f \
 
74
        x11f \
 
75
        x12f \
 
76
        x13f \
 
77
        x14f \
 
78
        x15f \
 
79
        x16af \
 
80
        x16f \
 
81
        x17f \
 
82
        x18f \
 
83
        x19f \
 
84
        x22f \
 
85
        x23f
 
86
 
 
87
x01f_SOURCES = x01f.f90
 
88
x02f_SOURCES = x02f.f90
 
89
x03f_SOURCES = x03f.f90
 
90
x04f_SOURCES = x04f.f90
 
91
x05f_SOURCES = x05f.f90
 
92
x06f_SOURCES = x06f.f90
 
93
x07f_SOURCES = x07f.f90
 
94
x08f_SOURCES = x08f.f90
 
95
x09f_SOURCES = x09f.f90
 
96
x10f_SOURCES = x10f.f90
 
97
x11f_SOURCES = x11f.f90
 
98
x12f_SOURCES = x12f.f90
 
99
x13f_SOURCES = x13f.f90
 
100
x14f_SOURCES = x14f.f90
 
101
x15f_SOURCES = x15f.f90
 
102
x16f_SOURCES = x16f.f90
 
103
x16af_SOURCES = x16af.f90
 
104
x17f_SOURCES = x17f.f90
 
105
x18f_SOURCES = x18f.f90
 
106
x19f_SOURCES = x19f.f90
 
107
x22f_SOURCES = x22f.f90
 
108
x23f_SOURCES = x23f.f90
 
109
 
 
110
LDADD = $(libplplot) $(libplplotf95c) $(libplplotf95)
 
111
 
 
112
install-data-hook:
 
113
        ( cd $(DESTDIR)$(examples_f95dir) ; mv -f Makefile.examples Makefile )
 
114
 
 
115
else
 
116
 
 
117
# The following empty rule is needed because we are in the "else" part of
 
118
# an AM_CONDITIONAL
 
119
install-data-hook:
 
120
 
 
121
# enable_f95
 
122
endif