Mercurial > hg > octave-lyh
annotate scripts/general/Makefile.in @ 8934:c2099a4d12ea
partially optimize accumarray
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Mon, 09 Mar 2009 10:59:19 +0100 |
parents | eb63fbe60fab |
children | d9716e3ee0dd |
rev | line source |
---|---|
681 | 1 # Makefile for octave's scripts/general directory |
2 # | |
8920 | 3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007, 2008 |
7017 | 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 \ | |
8213
d5e08881bba8
Add overloading of the colon operator
David Bateman <dbateman@free.fr>
parents:
8212
diff
changeset
|
38 cart2sph.m cellidx.m cell2mat.m celldisp.m circshift.m colon.m common_size.m \ |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
39 cplxpair.m cumtrapz.m dblquad.m deal.m del2.m diff.m display.m flipdim.m \ |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
40 fliplr.m 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 \ |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
44 isvector.m loadobj.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 \ |
8212
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
47 rem.m repmat.m rot90.m rotdim.m runlength.m saveobj.m shift.m shiftdim.m \ |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
48 sortrows.m sph2cart.m strerror.m structfun.m sub2ind.m subsindex.m \ |
ebf6f6a0f9a7
Allow saving/loading of classes. Add saveobj and loadobj methods
David Bateman <dbateman@free.fr>
parents:
8154
diff
changeset
|
49 triplequad.m trapz.m tril.m triu.m |
681 | 50 |
6797 | 51 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
681 | 52 |
6283 | 53 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681 | 54 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
55 | |
5597 | 56 all: PKG_ADD |
681 | 57 .PHONY: all |
58 | |
2811 | 59 install install-strip: |
4225 | 60 $(do-script-install) |
2811 | 61 .PHONY: install install-strip |
681 | 62 |
63 uninstall: | |
4225 | 64 $(do-script-uninstall) |
681 | 65 .PHONY: uninstall |
66 | |
67 clean: | |
68 .PHONY: clean | |
69 | |
5597 | 70 PKG_ADD: $(FCN_FILES) |
71 @echo "making PKG_ADD" | |
72 @$(do-mkpkgadd) | |
73 | |
681 | 74 tags: $(SOURCES) |
75 ctags $(SOURCES) | |
76 | |
77 TAGS: $(SOURCES) | |
78 etags $(SOURCES) | |
79 | |
80 mostlyclean: clean | |
81 .PHONY: mostlyclean | |
82 | |
83 distclean: clean | |
5866 | 84 rm -f Makefile PKG_ADD |
681 | 85 .PHONY: distclean |
86 | |
1391 | 87 maintainer-clean: distclean |
681 | 88 rm -f tags TAGS |
1391 | 89 .PHONY: maintainer-clean |
681 | 90 |
91 dist: | |
6467 | 92 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/general |
681 | 93 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
94 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
95 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
96 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7684
diff
changeset
|
97 .PHONY: check-m-sources |