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