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 \ |
6788
|
99 peaks.m \ |
6257
|
100 plot.m \ |
|
101 plot3.m \ |
|
102 polar.m \ |
|
103 print.m \ |
|
104 replot.m \ |
|
105 semilogx.m \ |
|
106 semilogxerr.m \ |
|
107 semilogy.m \ |
|
108 semilogyerr.m \ |
|
109 shg.m \ |
|
110 sombrero.m \ |
|
111 stairs.m \ |
6303
|
112 stem.m \ |
6257
|
113 subplot.m \ |
|
114 text.m \ |
|
115 title.m \ |
|
116 view.m \ |
|
117 xlabel.m \ |
7049
|
118 xlim.m \ |
6257
|
119 ylabel.m \ |
7049
|
120 ylim.m \ |
|
121 zlabel.m \ |
|
122 zlim.m |
681
|
123 |
6797
|
124 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
6257
|
125 |
6407
|
126 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681
|
127 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
|
128 |
6405
|
129 all: PKG_ADD |
681
|
130 .PHONY: all |
|
131 |
2811
|
132 install install-strip: |
4225
|
133 $(do-script-install) |
2811
|
134 .PHONY: install install-strip |
681
|
135 |
|
136 uninstall: |
4225
|
137 $(do-script-uninstall) |
681
|
138 .PHONY: uninstall |
|
139 |
|
140 clean: |
|
141 .PHONY: clean |
|
142 |
5597
|
143 PKG_ADD: $(FCN_FILES) |
|
144 @echo "making PKG_ADD" |
|
145 @$(do-mkpkgadd) |
|
146 |
681
|
147 tags: $(SOURCES) |
|
148 ctags $(SOURCES) |
|
149 |
|
150 TAGS: $(SOURCES) |
|
151 etags $(SOURCES) |
|
152 |
|
153 mostlyclean: clean |
|
154 .PHONY: mostlyclean |
|
155 |
|
156 distclean: clean |
5866
|
157 rm -f Makefile PKG_ADD |
681
|
158 .PHONY: distclean |
|
159 |
1391
|
160 maintainer-clean: distclean |
681
|
161 rm -f tags TAGS |
1391
|
162 .PHONY: maintainer-clean |
681
|
163 |
|
164 dist: |
6467
|
165 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/plot |
681
|
166 .PHONY: dist |