annotate scripts/deprecated/module.mk @ 20544:cd4a8b4631da

bitmax.m: Correct docstring to say function will be removed in version 4.6. * bitmax.m: Correct docstring to say function will be removed in version 4.6.
author Rik <rik@octave.org>
date Wed, 23 Sep 2015 02:45:54 -0700
parents afdb856e44f1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
1 FCN_FILE_DIRS += scripts/deprecated
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
3 scripts_deprecated_FCN_FILES = \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
4 scripts/deprecated/bicubic.m \
20521
4bb41929286b Deprecate bitmax.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 20519
diff changeset
5 scripts/deprecated/bitmax.m \
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
6 scripts/deprecated/delaunay3.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
7 scripts/deprecated/dump_prefs.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
8 scripts/deprecated/find_dir_in_path.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
9 scripts/deprecated/finite.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
10 scripts/deprecated/fmod.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
11 scripts/deprecated/fnmatch.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
12 scripts/deprecated/gmap40.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
13 scripts/deprecated/isstr.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
14 scripts/deprecated/loadaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
15 scripts/deprecated/luinc.m \
20537
afdb856e44f1 Deprecate mahalanobis function.
Rik <rik@octave.org>
parents: 20521
diff changeset
16 scripts/deprecated/mahalanobis.m \
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
17 scripts/deprecated/mouse_wheel_zoom.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
18 scripts/deprecated/nfields.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
19 scripts/deprecated/octave_tmp_file_name.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
20 scripts/deprecated/playaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
21 scripts/deprecated/saveaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
22 scripts/deprecated/setaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
23 scripts/deprecated/syl.m \
20519
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
24 scripts/deprecated/usage.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
25 scripts/deprecated/wavread.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
26 scripts/deprecated/wavwrite.m
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27
20378
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
28 scripts_deprecateddir = $(fcnfiledir)/deprecated
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
29
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
30 scripts_deprecated_DATA = $(scripts_deprecated_FCN_FILES)
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
31
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
32 FCN_FILES += $(scripts_deprecated_FCN_FILES)
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
34 PKG_ADD_FILES += scripts/deprecated/PKG_ADD
9906
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents: 9868
diff changeset
35
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
36 DIRSTAMP_FILES += scripts/deprecated/$(octave_dirstamp)