681
|
1 # Makefile for octave's scripts/plot directory |
|
2 # |
7017
|
3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007 |
|
4 # John W. Eaton |
|
5 # |
7016
|
6 # This file is part of Octave. |
|
7 # |
|
8 # Octave is free software; you can redistribute it and/or modify it |
|
9 # under the terms of the GNU General Public License as published by the |
|
10 # Free Software Foundation; either version 3 of the License, or (at |
|
11 # your option) any later version. |
|
12 # |
|
13 # Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 # for more details. |
|
17 # |
|
18 # You should have received a copy of the GNU General Public License |
|
19 # along with Octave; see the file COPYING. If not, see |
|
20 # <http://www.gnu.org/licenses/>. |
681
|
21 |
682
|
22 TOPDIR = ../.. |
681
|
23 |
|
24 script_sub_dir = plot |
|
25 |
|
26 srcdir = @srcdir@ |
|
27 top_srcdir = @top_srcdir@ |
|
28 VPATH = @srcdir@ |
|
29 |
|
30 include $(TOPDIR)/Makeconf |
|
31 |
|
32 INSTALL = @INSTALL@ |
|
33 INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
|
34 INSTALL_DATA = @INSTALL_DATA@ |
|
35 |
6405
|
36 SOURCES = \ |
7146
|
37 __area__.m \ |
7049
|
38 __axes_limits__.m \ |
6257
|
39 __axis_label__.m \ |
6553
|
40 __bar__.m \ |
7170
|
41 __contour__.m \ |
6264
|
42 __default_plot_options__.m \ |
6257
|
43 __errcomm__.m \ |
|
44 __errplot__.m \ |
6408
|
45 __go_close_all__.m \ |
|
46 __go_draw_axes__.m \ |
|
47 __go_draw_figure__.m \ |
6261
|
48 __gnuplot_version__.m \ |
6409
|
49 __line__.m \ |
6264
|
50 __next_line_color__.m \ |
6807
|
51 __patch__.m \ |
6257
|
52 __plr1__.m \ |
|
53 __plr2__.m \ |
|
54 __plt1__.m \ |
|
55 __plt2__.m \ |
|
56 __plt2mm__.m \ |
|
57 __plt2mv__.m \ |
|
58 __plt2ss__.m \ |
|
59 __plt2vm__.m \ |
|
60 __plt2vv__.m \ |
|
61 __plt__.m \ |
|
62 __plt_get_axis_arg__.m \ |
|
63 __pltopt1__.m \ |
|
64 __pltopt__.m \ |
6857
|
65 ancestor.m \ |
7146
|
66 area.m \ |
6257
|
67 axes.m \ |
|
68 axis.m \ |
|
69 bar.m \ |
6636
|
70 barh.m \ |
6257
|
71 box.m \ |
|
72 clf.m \ |
|
73 close.m \ |
|
74 closereq.m \ |
7175
|
75 contour3.m \ |
6257
|
76 contour.m \ |
|
77 contourc.m \ |
7042
|
78 contourf.m \ |
7181
|
79 cylinder.m \ |
6257
|
80 drawnow.m \ |
|
81 errorbar.m \ |
|
82 figure.m \ |
7024
|
83 fill.m \ |
6935
|
84 findobj.m \ |
6257
|
85 fplot.m \ |
|
86 gca.m \ |
|
87 gcf.m \ |
|
88 grid.m \ |
7149
|
89 hidden.m \ |
6257
|
90 hist.m \ |
|
91 hold.m \ |
|
92 isfigure.m \ |
|
93 ishold.m \ |
|
94 legend.m \ |
|
95 line.m \ |
|
96 loglog.m \ |
|
97 loglogerr.m \ |
|
98 mesh.m \ |
6788
|
99 meshc.m \ |
6257
|
100 meshgrid.m \ |
|
101 ndgrid.m \ |
|
102 newplot.m \ |
|
103 orient.m \ |
6807
|
104 patch.m \ |
7118
|
105 pcolor.m \ |
6788
|
106 peaks.m \ |
7118
|
107 pie.m \ |
6257
|
108 plot.m \ |
|
109 plot3.m \ |
|
110 polar.m \ |
|
111 print.m \ |
7122
|
112 quiver.m \ |
6257
|
113 replot.m \ |
7163
|
114 ribbon.m \ |
6257
|
115 semilogx.m \ |
|
116 semilogxerr.m \ |
|
117 semilogy.m \ |
|
118 semilogyerr.m \ |
7118
|
119 shading.m \ |
6257
|
120 shg.m \ |
7183
|
121 slice.m \ |
6257
|
122 sombrero.m \ |
7163
|
123 spinmap.m \ |
6257
|
124 stairs.m \ |
6303
|
125 stem.m \ |
6257
|
126 subplot.m \ |
7118
|
127 surf.m \ |
|
128 surface.m \ |
|
129 surfc.m \ |
6257
|
130 text.m \ |
|
131 title.m \ |
|
132 view.m \ |
|
133 xlabel.m \ |
7049
|
134 xlim.m \ |
6257
|
135 ylabel.m \ |
7049
|
136 ylim.m \ |
|
137 zlabel.m \ |
|
138 zlim.m |
681
|
139 |
6797
|
140 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
6257
|
141 |
6407
|
142 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681
|
143 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
|
144 |
6405
|
145 all: PKG_ADD |
681
|
146 .PHONY: all |
|
147 |
2811
|
148 install install-strip: |
4225
|
149 $(do-script-install) |
2811
|
150 .PHONY: install install-strip |
681
|
151 |
|
152 uninstall: |
4225
|
153 $(do-script-uninstall) |
681
|
154 .PHONY: uninstall |
|
155 |
|
156 clean: |
|
157 .PHONY: clean |
|
158 |
5597
|
159 PKG_ADD: $(FCN_FILES) |
|
160 @echo "making PKG_ADD" |
|
161 @$(do-mkpkgadd) |
|
162 |
681
|
163 tags: $(SOURCES) |
|
164 ctags $(SOURCES) |
|
165 |
|
166 TAGS: $(SOURCES) |
|
167 etags $(SOURCES) |
|
168 |
|
169 mostlyclean: clean |
|
170 .PHONY: mostlyclean |
|
171 |
|
172 distclean: clean |
5866
|
173 rm -f Makefile PKG_ADD |
681
|
174 .PHONY: distclean |
|
175 |
1391
|
176 maintainer-clean: distclean |
681
|
177 rm -f tags TAGS |
1391
|
178 .PHONY: maintainer-clean |
681
|
179 |
|
180 dist: |
6467
|
181 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/plot |
681
|
182 .PHONY: dist |