Mercurial > hg > octave-jordi
annotate scripts/path/Makefile.in @ 7961:a5d1e27ee1f4 ss-3-1-51
3.1.51 snapshot
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 22 Jul 2008 11:40:48 -0400 |
parents | 4584feed3ec4 |
children | eb63fbe60fab |
rev | line source |
---|---|
5732 | 1 # Makefile for octave's scripts/path directory |
2 # | |
7017 | 3 # Copyright (C) 2006, 2007 John W. Eaton |
4 # | |
7016 | 5 # This file is part of Octave. |
6 # | |
7 # Octave is free software; you can redistribute it and/or modify it | |
8 # under the terms of the GNU General Public License as published by the | |
9 # Free Software Foundation; either version 3 of the License, or (at | |
10 # your option) any later version. | |
11 # | |
12 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 # for more details. | |
16 # | |
17 # You should have received a copy of the GNU General Public License | |
18 # along with Octave; see the file COPYING. If not, see | |
19 # <http://www.gnu.org/licenses/>. | |
5732 | 20 |
21 TOPDIR = ../.. | |
22 | |
23 script_sub_dir = path | |
24 | |
25 srcdir = @srcdir@ | |
26 top_srcdir = @top_srcdir@ | |
27 VPATH = @srcdir@ | |
28 | |
29 include $(TOPDIR)/Makeconf | |
30 | |
31 INSTALL = @INSTALL@ | |
32 INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
33 INSTALL_DATA = @INSTALL_DATA@ | |
34 | |
7388 | 35 SOURCES = __extractpath__.m matlabroot.m pathdef.m savepath.m |
5732 | 36 |
6797 | 37 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
5732 | 38 |
6283 | 39 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
5732 | 40 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
41 | |
42 all: PKG_ADD | |
43 .PHONY: all | |
44 | |
45 install install-strip: | |
46 $(do-script-install) | |
47 .PHONY: install install-strip | |
48 | |
49 uninstall: | |
50 $(do-script-uninstall) | |
51 .PHONY: uninstall | |
52 | |
53 clean: | |
54 .PHONY: clean | |
55 | |
56 PKG_ADD: $(FCN_FILES) | |
57 @echo "making PKG_ADD" | |
58 @$(do-mkpkgadd) | |
59 | |
60 tags: $(SOURCES) | |
61 ctags $(SOURCES) | |
62 | |
63 TAGS: $(SOURCES) | |
64 etags $(SOURCES) | |
65 | |
66 mostlyclean: clean | |
67 .PHONY: mostlyclean | |
68 | |
69 distclean: clean | |
5866 | 70 rm -f Makefile PKG_ADD |
5732 | 71 .PHONY: distclean |
72 | |
73 maintainer-clean: distclean | |
74 rm -f tags TAGS | |
75 .PHONY: maintainer-clean | |
76 | |
77 dist: | |
6467 | 78 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/path |
5732 | 79 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7388
diff
changeset
|
80 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7388
diff
changeset
|
81 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7388
diff
changeset
|
82 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7388
diff
changeset
|
83 .PHONY: check-m-sources |