681
|
1 # |
|
2 # Makefile for octave's scripts/plot directory |
|
3 # |
|
4 # John W. Eaton |
1714
|
5 # jwe@bevo.che.wisc.edu |
|
6 # University of Wisconsin-Madison |
681
|
7 # Department of Chemical Engineering |
|
8 |
682
|
9 TOPDIR = ../.. |
681
|
10 |
|
11 script_sub_dir = plot |
|
12 |
|
13 srcdir = @srcdir@ |
|
14 top_srcdir = @top_srcdir@ |
|
15 VPATH = @srcdir@ |
|
16 |
|
17 include $(TOPDIR)/Makeconf |
|
18 |
|
19 INSTALL = @INSTALL@ |
|
20 INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
|
21 INSTALL_DATA = @INSTALL_DATA@ |
|
22 |
6405
|
23 SOURCES = \ |
6257
|
24 __axis_label__.m \ |
6264
|
25 __default_colormap__.m \ |
|
26 __default_plot_options__.m \ |
6257
|
27 __errcomm__.m \ |
|
28 __errplot__.m \ |
6408
|
29 __go_close_all__.m \ |
|
30 __go_draw_axes__.m \ |
|
31 __go_draw_figure__.m \ |
6261
|
32 __gnuplot_version__.m \ |
6409
|
33 __line__.m \ |
6264
|
34 __next_line_color__.m \ |
6257
|
35 __plr1__.m \ |
|
36 __plr2__.m \ |
|
37 __plt1__.m \ |
|
38 __plt2__.m \ |
|
39 __plt2mm__.m \ |
|
40 __plt2mv__.m \ |
|
41 __plt2ss__.m \ |
|
42 __plt2vm__.m \ |
|
43 __plt2vv__.m \ |
|
44 __plt__.m \ |
|
45 __plt_get_axis_arg__.m \ |
|
46 __pltopt1__.m \ |
|
47 __pltopt__.m \ |
|
48 axes.m \ |
|
49 axis.m \ |
|
50 bar.m \ |
|
51 box.m \ |
|
52 clf.m \ |
|
53 close.m \ |
|
54 closereq.m \ |
|
55 contour.m \ |
|
56 contourc.m \ |
|
57 drawnow.m \ |
|
58 errorbar.m \ |
|
59 figure.m \ |
|
60 fplot.m \ |
|
61 gca.m \ |
|
62 gcf.m \ |
|
63 grid.m \ |
|
64 hist.m \ |
|
65 hold.m \ |
|
66 isfigure.m \ |
|
67 ishold.m \ |
|
68 legend.m \ |
|
69 line.m \ |
|
70 loglog.m \ |
|
71 loglogerr.m \ |
|
72 mesh.m \ |
|
73 meshdom.m \ |
|
74 meshgrid.m \ |
|
75 ndgrid.m \ |
|
76 newplot.m \ |
|
77 orient.m \ |
|
78 plot.m \ |
|
79 plot3.m \ |
|
80 polar.m \ |
|
81 print.m \ |
|
82 replot.m \ |
|
83 semilogx.m \ |
|
84 semilogxerr.m \ |
|
85 semilogy.m \ |
|
86 semilogyerr.m \ |
|
87 shg.m \ |
|
88 sombrero.m \ |
|
89 stairs.m \ |
6303
|
90 stem.m \ |
6257
|
91 subplot.m \ |
|
92 text.m \ |
|
93 title.m \ |
|
94 view.m \ |
|
95 xlabel.m \ |
|
96 ylabel.m \ |
|
97 zlabel.m |
681
|
98 |
6257
|
99 DISTFILES = Makefile.in include-globals.awk $(SOURCES) |
|
100 |
6407
|
101 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681
|
102 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
|
103 |
6405
|
104 all: PKG_ADD |
681
|
105 .PHONY: all |
|
106 |
2811
|
107 install install-strip: |
4225
|
108 $(do-script-install) |
2811
|
109 .PHONY: install install-strip |
681
|
110 |
|
111 uninstall: |
4225
|
112 $(do-script-uninstall) |
681
|
113 .PHONY: uninstall |
|
114 |
|
115 clean: |
|
116 .PHONY: clean |
|
117 |
5597
|
118 PKG_ADD: $(FCN_FILES) |
|
119 @echo "making PKG_ADD" |
|
120 @$(do-mkpkgadd) |
|
121 |
681
|
122 tags: $(SOURCES) |
|
123 ctags $(SOURCES) |
|
124 |
|
125 TAGS: $(SOURCES) |
|
126 etags $(SOURCES) |
|
127 |
|
128 mostlyclean: clean |
|
129 .PHONY: mostlyclean |
|
130 |
|
131 distclean: clean |
5866
|
132 rm -f Makefile PKG_ADD |
681
|
133 .PHONY: distclean |
|
134 |
1391
|
135 maintainer-clean: distclean |
681
|
136 rm -f tags TAGS |
1391
|
137 .PHONY: maintainer-clean |
681
|
138 |
|
139 dist: |
6358
|
140 $(LN_S) $(DISTFILES) ../../`cat ../../.fname`/scripts/plot |
681
|
141 .PHONY: dist |