Mercurial > hg > octave-nkf
annotate scripts/polynomial/module.mk @ 14651:f19d29868346
build: Distribute functions in the polynomial/private directory.
* polynomial/module.mk: Add private fcn files to list in
polynomial_FCN_FILES variable.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Fri, 18 May 2012 11:18:29 -0700 |
parents | c541f7addf25 |
children | fa0cf7d870d7 |
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 += polynomial |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
2 |
14523
c541f7addf25
restore correct list of plot/private files in scripts/Makefile
John W. Eaton <jwe@octave.org>
parents:
14509
diff
changeset
|
3 polynomial_PRIVATE_FCN_FILES = \ |
14651
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
4 polynomial/private/__splinefit__.m |
14509 | 5 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
6 polynomial_FCN_FILES = \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
7 polynomial/compan.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
8 polynomial/conv.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
9 polynomial/deconv.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
10 polynomial/mkpp.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
11 polynomial/mpoles.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
12 polynomial/pchip.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
13 polynomial/poly.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
14 polynomial/polyaffine.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
15 polynomial/polyder.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
16 polynomial/polyfit.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
17 polynomial/polygcd.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
18 polynomial/polyint.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
19 polynomial/polyout.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
20 polynomial/polyreduce.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
21 polynomial/polyval.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
22 polynomial/polyvalm.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
23 polynomial/ppval.m \ |
9978
13a85d3e13bb
Fix typo and distribute new ppder.m script
Rik <rdrider0-list@yahoo.com>
parents:
9976
diff
changeset
|
24 polynomial/ppder.m \ |
9976
702b998698ea
implement ppder, ppint, ppjmups
Jaroslav Hajek <highegg@gmail.com>
parents:
9906
diff
changeset
|
25 polynomial/ppint.m \ |
702b998698ea
implement ppder, ppint, ppjmups
Jaroslav Hajek <highegg@gmail.com>
parents:
9906
diff
changeset
|
26 polynomial/ppjumps.m \ |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
27 polynomial/residue.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
28 polynomial/roots.m \ |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
29 polynomial/spline.m \ |
14509 | 30 polynomial/splinefit.m \ |
14651
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
31 polynomial/unmkpp.m \ |
f19d29868346
build: Distribute functions in the polynomial/private directory.
Rik <octave@nomad.inbox5.com>
parents:
14523
diff
changeset
|
32 $(polynomial_PRIVATE_FCN_FILES) |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
33 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
34 FCN_FILES += $(polynomial_FCN_FILES) |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
35 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff
changeset
|
36 PKG_ADD_FILES += polynomial/PKG_ADD |
9906 | 37 |
38 DIRSTAMP_FILES += polynomial/$(octave_dirstamp) |