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 \ |
6264
|
41 __default_plot_options__.m \ |
6257
|
42 __errcomm__.m \ |
|
43 __errplot__.m \ |
6408
|
44 __go_close_all__.m \ |
|
45 __go_draw_axes__.m \ |
|
46 __go_draw_figure__.m \ |
6261
|
47 __gnuplot_version__.m \ |
6409
|
48 __line__.m \ |
6264
|
49 __next_line_color__.m \ |
6807
|
50 __patch__.m \ |
6257
|
51 __plr1__.m \ |
|
52 __plr2__.m \ |
|
53 __plt1__.m \ |
|
54 __plt2__.m \ |
|
55 __plt2mm__.m \ |
|
56 __plt2mv__.m \ |
|
57 __plt2ss__.m \ |
|
58 __plt2vm__.m \ |
|
59 __plt2vv__.m \ |
|
60 __plt__.m \ |
|
61 __plt_get_axis_arg__.m \ |
|
62 __pltopt1__.m \ |
|
63 __pltopt__.m \ |
6857
|
64 ancestor.m \ |
7146
|
65 area.m \ |
6257
|
66 axes.m \ |
|
67 axis.m \ |
|
68 bar.m \ |
6636
|
69 barh.m \ |
6257
|
70 box.m \ |
|
71 clf.m \ |
|
72 close.m \ |
|
73 closereq.m \ |
|
74 contour.m \ |
|
75 contourc.m \ |
7042
|
76 contourf.m \ |
6257
|
77 drawnow.m \ |
|
78 errorbar.m \ |
|
79 figure.m \ |
7024
|
80 fill.m \ |
6935
|
81 findobj.m \ |
6257
|
82 fplot.m \ |
|
83 gca.m \ |
|
84 gcf.m \ |
|
85 grid.m \ |
|
86 hist.m \ |
|
87 hold.m \ |
|
88 isfigure.m \ |
|
89 ishold.m \ |
|
90 legend.m \ |
|
91 line.m \ |
|
92 loglog.m \ |
|
93 loglogerr.m \ |
|
94 mesh.m \ |
6788
|
95 meshc.m \ |
6257
|
96 meshgrid.m \ |
|
97 ndgrid.m \ |
|
98 newplot.m \ |
|
99 orient.m \ |
6807
|
100 patch.m \ |
7118
|
101 pcolor.m \ |
6788
|
102 peaks.m \ |
7118
|
103 pie.m \ |
6257
|
104 plot.m \ |
|
105 plot3.m \ |
|
106 polar.m \ |
|
107 print.m \ |
7122
|
108 quiver.m \ |
6257
|
109 replot.m \ |
|
110 semilogx.m \ |
|
111 semilogxerr.m \ |
|
112 semilogy.m \ |
|
113 semilogyerr.m \ |
7118
|
114 shading.m \ |
6257
|
115 shg.m \ |
|
116 sombrero.m \ |
|
117 stairs.m \ |
6303
|
118 stem.m \ |
6257
|
119 subplot.m \ |
7118
|
120 surf.m \ |
|
121 surface.m \ |
|
122 surfc.m \ |
6257
|
123 text.m \ |
|
124 title.m \ |
|
125 view.m \ |
|
126 xlabel.m \ |
7049
|
127 xlim.m \ |
6257
|
128 ylabel.m \ |
7049
|
129 ylim.m \ |
|
130 zlabel.m \ |
|
131 zlim.m |
681
|
132 |
6797
|
133 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
6257
|
134 |
6407
|
135 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681
|
136 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
|
137 |
6405
|
138 all: PKG_ADD |
681
|
139 .PHONY: all |
|
140 |
2811
|
141 install install-strip: |
4225
|
142 $(do-script-install) |
2811
|
143 .PHONY: install install-strip |
681
|
144 |
|
145 uninstall: |
4225
|
146 $(do-script-uninstall) |
681
|
147 .PHONY: uninstall |
|
148 |
|
149 clean: |
|
150 .PHONY: clean |
|
151 |
5597
|
152 PKG_ADD: $(FCN_FILES) |
|
153 @echo "making PKG_ADD" |
|
154 @$(do-mkpkgadd) |
|
155 |
681
|
156 tags: $(SOURCES) |
|
157 ctags $(SOURCES) |
|
158 |
|
159 TAGS: $(SOURCES) |
|
160 etags $(SOURCES) |
|
161 |
|
162 mostlyclean: clean |
|
163 .PHONY: mostlyclean |
|
164 |
|
165 distclean: clean |
5866
|
166 rm -f Makefile PKG_ADD |
681
|
167 .PHONY: distclean |
|
168 |
1391
|
169 maintainer-clean: distclean |
681
|
170 rm -f tags TAGS |
1391
|
171 .PHONY: maintainer-clean |
681
|
172 |
|
173 dist: |
6467
|
174 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/plot |
681
|
175 .PHONY: dist |