annotate scripts/strings/Makefile.in @ 9051:1bf0ce0930be

Grammar check TexInfo in all .m files Cleanup documentation sources to follow a few consistent rules. Spellcheck was NOT done. (but will be in another changeset)
author Rik <rdrider0-list@yahoo.com>
date Fri, 27 Mar 2009 22:31:03 -0700
parents eb63fbe60fab
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
1 # Makefile for octave's scripts/strings directory
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
2 #
8920
eb63fbe60fab update copyright notices
John W. Eaton <jwe@octave.org>
parents: 8877
diff changeset
3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007, 2008, 2009
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
4 # John W. Eaton
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
5 #
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
6 # This file is part of Octave.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
7 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
8 # Octave is free software; you can redistribute it and/or modify it
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
9 # under the terms of the GNU General Public License as published by the
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
10 # Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
11 # your option) any later version.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
12 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
13 # Octave is distributed in the hope that it will be useful, but WITHOUT
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
16 # for more details.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
17 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
18 # You should have received a copy of the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
19 # along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
20 # <http://www.gnu.org/licenses/>.
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
21
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
22 TOPDIR = ../..
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
23
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
24 script_sub_dir = strings
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
25
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
26 srcdir = @srcdir@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
27 top_srcdir = @top_srcdir@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
28 VPATH = @srcdir@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
29
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
30 include $(TOPDIR)/Makeconf
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
31
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
32 INSTALL = @INSTALL@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
33 INSTALL_PROGRAM = @INSTALL_PROGRAM@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
34 INSTALL_DATA = @INSTALL_DATA@
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
35
6283
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
36 SOURCES = base2dec.m bin2dec.m blanks.m deblank.m dec2base.m \
7698
4584feed3ec4 check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents: 7658
diff changeset
37 dec2bin.m dec2hex.m findstr.m hex2dec.m index.m isletter.m isstrprop.m \
8877
2c8b2399247b implement strsplit; deprecate split
Jaroslav Hajek <highegg@gmail.com>
parents: 8552
diff changeset
38 mat2str.m regexptranslate.m rindex.m strsplit.m str2double.m \
8552
3591fe09f3b1 add the strchr function
Jaroslav Hajek <highegg@gmail.com>
parents: 8462
diff changeset
39 str2num.m strcat.m cstrcat.m strcmpi.m strchr.m strfind.m strjust.m strmatch.m \
8462
ebdf1e058d85 Make strvcat an internal function
Thorsten Meyer <thorsten.meyier@gmx.de>
parents: 8387
diff changeset
40 strncmpi.m strrep.m strtok.m strtrim.m strtrunc.m \
8387
1567db1e166c make upper and lower aliases of toupper and tolower respectively
Thorsten Meyer <thorsten.meyier@gmx.de>
parents: 8372
diff changeset
41 substr.m validatestring.m
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
42
6797
5b00586ccd27 [project @ 2007-07-25 15:49:17 by jwe]
jwe
parents: 6796
diff changeset
43 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES))
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
44
6283
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
45 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES))
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
46 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
47
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
48 all: PKG_ADD
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
49 .PHONY: all
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
50
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
51 install install-strip:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
52 $(do-script-install)
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
53 .PHONY: install install-strip
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
54
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
55 uninstall:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
56 $(do-script-uninstall)
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
57 .PHONY: uninstall
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
58
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
59 clean:
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
60 .PHONY: clean
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
61
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
62 PKG_ADD: $(FCN_FILES)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
63 @echo "making PKG_ADD"
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
64 @$(do-mkpkgadd)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
65
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
66 tags: $(SOURCES)
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
67 ctags $(SOURCES)
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
68
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
69 TAGS: $(SOURCES)
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
70 etags $(SOURCES)
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
71
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
72 mostlyclean: clean
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
73 .PHONY: mostlyclean
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
74
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
75 distclean: clean
5866
f9ac7ebf0e19 [project @ 2006-06-28 16:05:22 by jwe]
jwe
parents: 5597
diff changeset
76 rm -f Makefile PKG_ADD
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
77 .PHONY: distclean
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
78
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
79 maintainer-clean: distclean
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
80 rm -f tags TAGS
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
81 .PHONY: maintainer-clean
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
82
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
83 dist:
6467
a84de7048629 [project @ 2007-03-27 16:05:15 by jwe]
jwe
parents: 6358
diff changeset
84 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/strings
923
8eb9bb511f2a [project @ 1994-11-14 22:42:15 by jwe]
jwe
parents:
diff changeset
85 .PHONY: dist
7698
4584feed3ec4 check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents: 7658
diff changeset
86
4584feed3ec4 check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents: 7658
diff changeset
87 check-m-sources:
4584feed3ec4 check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents: 7658
diff changeset
88 @$(do-check-m-sources)
4584feed3ec4 check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents: 7658
diff changeset
89 .PHONY: check-m-sources