Mercurial > hg > octave-nkf
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 |
rev | line source |
---|---|
923 | 1 # Makefile for octave's scripts/strings 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/>. | |
923 | 21 |
22 TOPDIR = ../.. | |
23 | |
24 script_sub_dir = strings | |
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 | |
6283 | 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 | 42 |
6797 | 43 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
923 | 44 |
6283 | 45 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
923 | 46 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
47 | |
5597 | 48 all: PKG_ADD |
923 | 49 .PHONY: all |
50 | |
2811 | 51 install install-strip: |
4225 | 52 $(do-script-install) |
2811 | 53 .PHONY: install install-strip |
923 | 54 |
55 uninstall: | |
4225 | 56 $(do-script-uninstall) |
923 | 57 .PHONY: uninstall |
58 | |
59 clean: | |
60 .PHONY: clean | |
61 | |
5597 | 62 PKG_ADD: $(FCN_FILES) |
63 @echo "making PKG_ADD" | |
64 @$(do-mkpkgadd) | |
65 | |
923 | 66 tags: $(SOURCES) |
67 ctags $(SOURCES) | |
68 | |
69 TAGS: $(SOURCES) | |
70 etags $(SOURCES) | |
71 | |
72 mostlyclean: clean | |
73 .PHONY: mostlyclean | |
74 | |
75 distclean: clean | |
5866 | 76 rm -f Makefile PKG_ADD |
923 | 77 .PHONY: distclean |
78 | |
1391 | 79 maintainer-clean: distclean |
923 | 80 rm -f tags TAGS |
1391 | 81 .PHONY: maintainer-clean |
923 | 82 |
83 dist: | |
6467 | 84 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/strings |
923 | 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 |