Mercurial > hg > octave-nkf
annotate scripts/deprecated/module.mk @ 15781:c33594eefda7
Add fieldnames.m which extensds fieldnames() to work on Java objects.
Deprecate javafields. Rename old C++ fieldnames to __fieldnames__.
* scripts/deprecated/javafields.m: Moved from scripts/java. Added deprecated
warning.
* scripts/java/javafields.m: Moved to scripts/deprecated.
* scripts/general/fieldnames.m: New m-file which accepts Java, structure,
or Octave objects as inputs.
* libinterp/octave-value/ov-struct.cc(Ffieldnames): Renamed fieldnames to
__fieldnames__ to avoid class with fieldnames.m.
* scripts/deprecated/module.mk: Added javafields to deprecated build.
* scripts/general/module.mk: Added fieldnames.m to build.
* scripts/java/module.mk: Removed javafields.m from build.
author | Rik <rik@octave.org> |
---|---|
date | Thu, 13 Dec 2012 10:57:04 -0800 |
parents | 4698ea77aa75 |
children | 42cff4396de4 |
rev | line source |
---|---|
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
1 FCN_FILE_DIRS += deprecated |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
2 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
3 deprecated_FCN_FILES = \ |
14081
b69762f7a343
maint: include functions in module.mk files
John W. Eaton <jwe@octave.org>
parents:
14018
diff
changeset
|
4 deprecated/__error_text__.m \ |
12856
cad4cba03f19
Deprecate corrcoef, cor and replace with Matlab equivalent corr
Rik <octave@nomad.inbox5.com>
parents:
12803
diff
changeset
|
5 deprecated/cor.m \ |
cad4cba03f19
Deprecate corrcoef, cor and replace with Matlab equivalent corr
Rik <octave@nomad.inbox5.com>
parents:
12803
diff
changeset
|
6 deprecated/corrcoef.m \ |
12797
71265f725b11
codesprint: Deprecate cut() function.
Rik <octave@nomad.inbox5.com>
parents:
12729
diff
changeset
|
7 deprecated/cut.m \ |
14081
b69762f7a343
maint: include functions in module.mk files
John W. Eaton <jwe@octave.org>
parents:
14018
diff
changeset
|
8 deprecated/error_text.m \ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
9 deprecated/isstr.m \ |
15781
c33594eefda7
Add fieldnames.m which extensds fieldnames() to work on Java objects.
Rik <rik@octave.org>
parents:
15771
diff
changeset
|
10 deprecated/javafields.m \ |
15771
4698ea77aa75
Hide java_init, java_exit functions. Deprecate java_new, java_set, java_get.
Rik <rik@octave.org>
parents:
14354
diff
changeset
|
11 deprecated/java_get.m \ |
4698ea77aa75
Hide java_init, java_exit functions. Deprecate java_new, java_set, java_get.
Rik <rik@octave.org>
parents:
14354
diff
changeset
|
12 deprecated/java_new.m \ |
4698ea77aa75
Hide java_init, java_exit functions. Deprecate java_new, java_set, java_get.
Rik <rik@octave.org>
parents:
14354
diff
changeset
|
13 deprecated/java_set.m \ |
12803
b7a6a3644f3b
codesprint: Deprecate polyderiv.m
Rik <octave@nomad.inbox5.com>
parents:
12797
diff
changeset
|
14 deprecated/polyderiv.m \ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
15 deprecated/setstr.m \ |
14018
5d5685216876
Deprecate shell_cmd function and update system, dos, unix commands
Rik <octave@nomad.inbox5.com>
parents:
12856
diff
changeset
|
16 deprecated/shell_cmd.m \ |
12586
f9b7aa3b88f8
Deprecate studentize(), replace with zscore().
Rik <octave@nomad.inbox5.com>
parents:
12574
diff
changeset
|
17 deprecated/studentize.m \ |
14354
55bb8c902a4d
maint: Remove deprecated functions from dev branch for next (3.8) release.
Rik <octave@nomad.inbox5.com>
parents:
14177
diff
changeset
|
18 deprecated/sylvester_matrix.m |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
19 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
20 FCN_FILES += $(deprecated_FCN_FILES) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
21 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
22 PKG_ADD_FILES += deprecated/PKG_ADD |
9906 | 23 |
24 DIRSTAMP_FILES += deprecated/$(octave_dirstamp) |