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