Mercurial > hg > octave-nkf
annotate scripts/linear-algebra/Makefile.in @ 12011:67ad3b58b99a release-3-2-x
improve error handling
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 24 Jun 2009 07:31:32 +0200 |
parents | eb63fbe60fab |
children |
rev | line source |
---|---|
681 | 1 # Makefile for octave's scripts/linear-algebra directory |
2 # | |
8920 | 3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007, 2008, 2009 |
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 = linear-algebra | |
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 | |
8303
b11c31849b44
improve norm computation capabilities
Jaroslav Hajek <highegg@gmail.com>
parents:
7698
diff
changeset
|
36 SOURCES = commutation_matrix.m cond.m condest.m cross.m \ |
8826 | 37 dot.m duplication_matrix.m expm.m housh.m krylov.m krylovb.m logm.m \ |
7653
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7611
diff
changeset
|
38 null.m onenormest.m orth.m planerot.m qzhess.m rank.m rref.m subspace.m \ |
d9eb2aec6d84
Add the planerot function
David Bateman <dbateman@free.fr>
parents:
7611
diff
changeset
|
39 trace.m vec.m vech.m |
681 | 40 |
6797 | 41 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
681 | 42 |
6283 | 43 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681 | 44 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
45 | |
5597 | 46 all: PKG_ADD |
681 | 47 .PHONY: all |
48 | |
2811 | 49 install install-strip: |
4225 | 50 $(do-script-install) |
2811 | 51 .PHONY: install install-strip |
681 | 52 |
53 uninstall: | |
4225 | 54 $(do-script-uninstall) |
681 | 55 .PHONY: uninstall |
56 | |
57 clean: | |
58 .PHONY: clean | |
59 | |
5597 | 60 PKG_ADD: $(FCN_FILES) |
61 @echo "making PKG_ADD" | |
62 @$(do-mkpkgadd) | |
63 | |
681 | 64 tags: $(SOURCES) |
65 ctags $(SOURCES) | |
66 | |
67 TAGS: $(SOURCES) | |
68 etags $(SOURCES) | |
69 | |
70 mostlyclean: clean | |
71 .PHONY: mostlyclean | |
72 | |
73 distclean: clean | |
5866 | 74 rm -f Makefile PKG_ADD |
681 | 75 .PHONY: distclean |
76 | |
1391 | 77 maintainer-clean: distclean |
681 | 78 rm -f tags TAGS |
1391 | 79 .PHONY: maintainer-clean |
681 | 80 |
81 dist: | |
6467 | 82 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/linear-algebra |
681 | 83 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
84 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
85 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
86 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7653
diff
changeset
|
87 .PHONY: check-m-sources |