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