File: Makefile.am

package info (click to toggle)
plplot 5.6.1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 30,084 kB
  • ctags: 14,146
  • sloc: ansic: 108,972; xml: 19,583; sh: 10,727; cpp: 9,049; tcl: 8,593; perl: 4,682; python: 4,332; f90: 3,697; java: 3,492; makefile: 3,400; fortran: 290; sed: 5; awk: 1
file content (155 lines) | stat: -rw-r--r-- 3,209 bytes parent folder | download
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# examples/python/Makefile.am for PLplot
###
### Process this file with automake to produce Makefile.in
###
# Copyright (C) 2002, 2004  Alan W. Irwin
# Copyright (C) 2004  Rafael Laboissiere
# Copyright (C) 2004  Andrew Ross
# Copyright (C) 2005  Thomas J. Duck
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published
# by the Free Software Foundation; version 2 of the License.
#
# PLplot 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 Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with the file PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

# These lists contain standalone scripts which are executable.
plplotcanvas_scripts = \
	plplotcanvas_demo.py \
	plplotcanvas_animation.py

python_scripts = \
	prova.py \
	pythondemos.py \
	x01 \
	x02 \
	x03 \
	x04 \
	x05 \
	x06 \
	x07 \
	x08 \
	x09 \
	x10 \
	x11 \
	x12 \
	x13 \
	x14 \
	x15 \
	x16 \
	x17 \
	x18 \
	x22 \
	x23 \
	x24 \
	xw14.py \
	xw17.py

# These lists contain python modules that can be imported and README files.
plplotcanvas_data = \
	README.plplotcanvas

python_data = \
	README.pythondemos \
	qplplot.py \
	xw01.py \
	xw02.py \
	xw03.py \
	xw04.py \
	xw05.py \
	xw06.py \
	xw07.py \
	xw08.py \
	xw09.py \
	xw10.py \
	xw11.py \
	xw12.py \
	xw13.py \
	xw15.py \
	xw16.py \
	xw18.py \
	xw19.py \
	xw22.py \
	xw23.py \
	xw24.py

if enable_python

examples_pythondir = $(DATA_DIR)/examples/python

# This list contains standalone scripts which are executable.
examples_python_SCRIPTS = $(python_scripts)

if enable_pygcw
examples_python_SCRIPTS += $(plplotcanvas_scripts)
endif

# This list contains python modules that can be imported and README files.
examples_python_DATA = $(python_data)

if enable_pygcw
examples_python_DATA += $(plplotcanvas_data)
endif

nodist_examples_python_DATA = plplot_python_start.py

CLEANFILES = *.pyc

check_DATA = \
        .check

.check: $(examples_python_SCRIPTS) $(examples_python_DATA)
	( if [ ! -f x01 ] ; then \
	    cd $(top_srcdir)/examples/python ; \
	    for file in $(examples_python_SCRIPTS) $(examples_python_DATA) ; do \
	      rm -f $(BUILD_DIR)/examples/python/$$file; $(LN_S) $(top_srcdir)/examples/python/$$file $(BUILD_DIR)/examples/python/$$file ; \
	    done ; \
	  fi )
	touch .check


endif #if enable_python

# A list of old stuff that should still (as of 2005-05-03, AWI) be 
# distributed since it contains useful information that could be used 
# to develop a python GUI that has the plframe capabilities.

old_dist = \
	pytkdemo \
	tutor.py \
	x01.py \
	x02.py \
	x03.py \
	x04.py \
	x05.py \
	x06.py \
	x07.py \
	x08.py \
	x09.py \
	x10.py \
	x11.py \
	x12.py \
	x13.py \
	x14.py \
	x15.py \
	x16.py \
	x17.py \
	x18.py \
	x19.py \
	xtkpy

EXTRA_DIST = \
	$(plplotcanvas_scripts) \
	$(python_scripts) \
	$(plplotcanvas_data) \
	$(python_data) \
	$(old_dist)