Mercurial > hg > octave-nkf
annotate scripts/miscellaneous/Makefile.in @ 8709:d090213c697a
scripts/miscellaneous/Makefile.in (SOURCES): include __xzip__.m in the list
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 09 Feb 2009 15:43:24 -0500 |
parents | 6f5b2835325c |
children | eb63fbe60fab |
rev | line source |
---|---|
681 | 1 # Makefile for octave's scripts/miscellaneous 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 = miscellaneous | |
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 | |
8709
d090213c697a
scripts/miscellaneous/Makefile.in (SOURCES): include __xzip__.m in the list
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
36 SOURCES = __xzip__.m ans.m bincoeff.m bug_report.m bunzip2.m bzip2.m \ |
d090213c697a
scripts/miscellaneous/Makefile.in (SOURCES): include __xzip__.m in the list
John W. Eaton <jwe@octave.org>
parents:
8670
diff
changeset
|
37 cast.m comma.m compare_versions.m computer.m copyfile.m debug.m \ |
8575
f134925a1cfa
m-file implementation of help system
Soren Hauberg <soren@hauberg.org>
parents:
8039
diff
changeset
|
38 delete.m dir.m dos.m dump_prefs.m edit.m \ |
7668 | 39 fileattrib.m fileparts.m flops.m fullfile.m getfield.m gunzip.m gzip.m \ |
8039
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7817
diff
changeset
|
40 info.m inputname.m intwarning.m ismac.m ispc.m isunix.m license.m \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7817
diff
changeset
|
41 list_primes.m ls.m ls_command.m menu.m mex.m mexext.m mkoctfile.m \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7817
diff
changeset
|
42 movefile.m namelengthmax.m news.m orderfields.m pack.m paren.m \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7817
diff
changeset
|
43 parseparams.m perl.m run.m semicolon.m setfield.m substruct.m swapbytes.m \ |
cd90e2842080
Add additional integer math and conversion warnings, set their default state to be off and add the intwarning function
David Bateman <dbateman@free.fr>
parents:
7817
diff
changeset
|
44 symvar.m tar.m tempdir.m tempname.m texas_lotto.m unix.m unpack.m untar.m \ |
7049 | 45 unzip.m ver.m version.m warning_ids.m what.m xor.m zip.m |
681 | 46 |
6797 | 47 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
681 | 48 |
6283 | 49 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
681 | 50 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
51 | |
5597 | 52 all: PKG_ADD |
681 | 53 .PHONY: all |
54 | |
2811 | 55 install install-strip: |
4225 | 56 $(do-script-install) |
2811 | 57 .PHONY: install install-strip |
681 | 58 |
59 uninstall: | |
4225 | 60 $(do-script-uninstall) |
681 | 61 .PHONY: uninstall |
62 | |
63 clean: | |
64 .PHONY: clean | |
65 | |
5597 | 66 PKG_ADD: $(FCN_FILES) |
67 @echo "making PKG_ADD" | |
68 @$(do-mkpkgadd) | |
69 | |
681 | 70 tags: $(SOURCES) |
71 ctags $(SOURCES) | |
72 | |
73 TAGS: $(SOURCES) | |
74 etags $(SOURCES) | |
75 | |
76 mostlyclean: clean | |
77 .PHONY: mostlyclean | |
78 | |
79 distclean: clean | |
5866 | 80 rm -f Makefile PKG_ADD |
681 | 81 .PHONY: distclean |
82 | |
1391 | 83 maintainer-clean: distclean |
681 | 84 rm -f tags TAGS |
1391 | 85 .PHONY: maintainer-clean |
681 | 86 |
87 dist: | |
6467 | 88 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/miscellaneous |
681 | 89 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7675
diff
changeset
|
90 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7675
diff
changeset
|
91 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7675
diff
changeset
|
92 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7675
diff
changeset
|
93 .PHONY: check-m-sources |