Mercurial > hg > octave-lyh
annotate scripts/general/Makefile.in @ 7785:9a656cd34f34
Add the interp1q function
author | David Bateman <dbateman@free.fr> |
---|---|
date | Wed, 14 May 2008 22:51:19 +0200 |
parents | 680631e787aa |
children | 79890b8187bd |
rev | line source |
---|---|
681 | 1 # Makefile for octave's scripts/general directory |
2 # | |
7017 | 3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007 |
4 # John W. Eaton | |
5 # | |
7016 | 6 # This file is part of Octave. |
7 # | |
8 # Octave is free software; you can redistribute it and/or modify it | |
9 # under the terms of the GNU General Public License as published by the | |
10 # Free Software Foundation; either version 3 of the License, or (at | |
11 # your option) any later version. | |
12 # | |
13 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 # for more details. | |
17 # | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with Octave; see the file COPYING. If not, see | |
20 # <http://www.gnu.org/licenses/>. | |
681 | 21 |
682 | 22 TOPDIR = ../.. |
681 | 23 |
24 script_sub_dir = general | |
25 | |
26 srcdir = @srcdir@ | |
27 top_srcdir = @top_srcdir@ | |
28 VPATH = @srcdir@ | |
29 | |
30 include $(TOPDIR)/Makeconf | |
31 | |
32 INSTALL = @INSTALL@ | |
33 INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
34 INSTALL_DATA = @INSTALL_DATA@ | |
35 | |
7657 | 36 SOURCES = __isequal__.m __splinen__.m accumarray.m arrayfun.m \ |
37 bicubic.m bitcmp.m bitget.m bitset.m blkdiag.m cart2pol.m \ | |
38 cart2sph.m cell2mat.m celldisp.m circshift.m common_size.m \ | |
7771
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
39 cplxpair.m cumtrapz.m dblquad.m deal.m del2.m diff.m flipdim.m fliplr.m \ |
7657 | 40 flipud.m genvarname.m gradient.m idivide.m ind2sub.m int2str.m \ |
7785
9a656cd34f34
Add the interp1q function
David Bateman <dbateman@free.fr>
parents:
7771
diff
changeset
|
41 interp1.m interp1q.m interp2.m interp3.m interpn.m interpft.m \ |
7658
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
42 is_duplicate_entry.m isa.m isdefinite.m isdir.m isequal.m \ |
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
43 isequalwithequalnans.m isscalar.m issquare.m issymmetric.m \ |
7671
4fbaba9abec1
implement compiled binary lookup
Jaroslav Hajek <highegg@gmail.com>
parents:
7658
diff
changeset
|
44 isvector.m logical.m logspace.m mod.m nargchk.m \ |
7658
1ce6460aebdf
nargoutchk.m, validatestring.m, addtodate.m: new functions
bill@denney.ws
parents:
7657
diff
changeset
|
45 nargoutchk.m nextpow2.m nthroot.m num2str.m perror.m pol2cart.m \ |
7771
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
46 polyarea.m postpad.m prepad.m quadgk.m quadl.m quadv.m randperm.m rat.m \ |
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
47 rem.m repmat.m rot90.m rotdim.m runlength.m shift.m shiftdim.m sortrows.m \ |
680631e787aa
Add quadv, quadgk, dblquad and triplequad functions
David Bateman <dbateman@free.fr>
parents:
7698
diff
changeset
|
48 sph2cart.m strerror.m structfun.m sub2ind.m triplequad.m trapz.m tril.m triu.m |
681 | 49 |
6797 | 50 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
681 | 51 |
6283 | 52 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681 | 53 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
54 | |
5597 | 55 all: PKG_ADD |
681 | 56 .PHONY: all |
57 | |
2811 | 58 install install-strip: |
4225 | 59 $(do-script-install) |
2811 | 60 .PHONY: install install-strip |
681 | 61 |
62 uninstall: | |
4225 | 63 $(do-script-uninstall) |
681 | 64 .PHONY: uninstall |
65 | |
66 clean: | |
67 .PHONY: clean | |
68 | |
5597 | 69 PKG_ADD: $(FCN_FILES) |
70 @echo "making PKG_ADD" | |
71 @$(do-mkpkgadd) | |
72 | |
681 | 73 tags: $(SOURCES) |
74 ctags $(SOURCES) | |
75 | |
76 TAGS: $(SOURCES) | |
77 etags $(SOURCES) | |
78 | |
79 mostlyclean: clean | |
80 .PHONY: mostlyclean | |
81 | |
82 distclean: clean | |
5866 | 83 rm -f Makefile PKG_ADD |
681 | 84 .PHONY: distclean |
85 | |
1391 | 86 maintainer-clean: distclean |
681 | 87 rm -f tags TAGS |
1391 | 88 .PHONY: maintainer-clean |
681 | 89 |
90 dist: | |
6467 | 91 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/general |
681 | 92 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
93 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
94 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
95 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
96 .PHONY: check-m-sources |