annotate scripts/deprecated/module.mk @ 20521:4bb41929286b

Deprecate bitmax. * NEWS: Announce deprecation and replacement functions. * scripts/deprecated/bitmax.m: New function. Add deprecation message to docstring. Add deprecation warning to m-file. * scripts/deprecated/module.mk: Add deprecated versions to build system. * libinterp/corefcn/bitfcns.cc: Remove build-in function. Remove function from docstrings. * libinterp/corefcn/data.cc: Remove function from docstrings. * scripts/general/bitcmp.m: Replace bitmax function calls with flintmax. Remove function from docstrings. * scripts/general/bitget.m: Replace bitmax function calls with flintmax. Remove function from docstrings. * scripts/general/bitset.m: Replace bitmax function calls with flintmax. Remove function from docstrings. * scripts/specfun/factor.m: Replace bitmax function calls with flintmax. Remove function from docstrings. * scripts/statistics/distributions/unidpdf.m: Remove function from docstrings. * scripts/general/num2str.m: Replaced function in comment. * doc/interpreter/doccheck/aspell-octave.en.pws: Remove functions from list. * doc/interpreter/numbers.txi: Remove function from manual.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 09 Sep 2015 18:43:52 +0200
parents c8ec0b72b7a6
children afdb856e44f1
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 \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
16 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
17 scripts/deprecated/nfields.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
18 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
19 scripts/deprecated/playaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
20 scripts/deprecated/saveaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
21 scripts/deprecated/setaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
22 scripts/deprecated/syl.m \
20519
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
23 scripts/deprecated/usage.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
24 scripts/deprecated/wavread.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20378
diff changeset
25 scripts/deprecated/wavwrite.m
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
20378
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
27 scripts_deprecateddir = $(fcnfiledir)/deprecated
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
28
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
29 scripts_deprecated_DATA = $(scripts_deprecated_FCN_FILES)
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20363
diff changeset
30
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
31 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
32
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
33 PKG_ADD_FILES += scripts/deprecated/PKG_ADD
9906
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents: 9868
diff changeset
34
20363
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20260
diff changeset
35 DIRSTAMP_FILES += scripts/deprecated/$(octave_dirstamp)