annotate scripts/statistics/Makefile.in @ 7016:93c65f2a5668

[project @ 2007-10-12 06:40:56 by jwe]
author jwe
date Fri, 12 Oct 2007 06:41:26 +0000
parents 59c0c3637633
children a1dbe9d80eee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
1 # Makefile for octave's scripts/statistics directory
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
2 #
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
3 # This file is part of Octave.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
4 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
5 # Octave is free software; you can redistribute it and/or modify it
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
6 # 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: 6796
diff changeset
7 # Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
8 # your option) any later version.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
9 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
10 # 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: 6796
diff changeset
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
13 # for more details.
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
14 #
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
15 # You should have received a copy of the GNU General Public License
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
16 # along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6796
diff changeset
17 # <http://www.gnu.org/licenses/>.
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
18
682
646ff1b3ff9a [project @ 1994-09-09 15:44:16 by jwe]
jwe
parents: 681
diff changeset
19 TOPDIR = ../..
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
20
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
21 script_sub_dir = statistics
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
22
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
23 srcdir = @srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
24 top_srcdir = @top_srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
25 VPATH = @srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
26
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
27 include $(TOPDIR)/Makeconf
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
28
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
29 INSTALL = @INSTALL@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
30 INSTALL_PROGRAM = @INSTALL_PROGRAM@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
31 INSTALL_DATA = @INSTALL_DATA@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
32
6796
59c0c3637633 [project @ 2007-07-25 15:45:04 by jwe]
jwe
parents: 6467
diff changeset
33 DISTFILES = $(srcdir)/Makefile.in
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
34
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
35 SUBDIRS = base distributions models tests
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
36
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
37 DISTSUBDIRS = $(SUBDIRS)
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
38
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
39 all: $(SUBDIRS)
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
40 .PHONY: all
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
41
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
42 $(SUBDIRS):
3297
b68ef5dec3bd [project @ 1999-10-19 17:52:27 by jwe]
jwe
parents: 3199
diff changeset
43 $(MAKE) -C $@ all
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
44 .PHONY: $(SUBDIRS)
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
45
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
46 install install-strip uninstall clean mostlyclean distclean maintainer-clean::
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
47 @$(subdir-for-command)
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
48 .PHONY: install install-strip uninstall
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
49 .PHONY: clean mostlyclean distclean maintainer-clean
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
50
3429
b9f5829ec843 [project @ 2000-01-14 03:18:47 by jwe]
jwe
parents: 3297
diff changeset
51 tags TAGS:
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
52 $(SUBDIR_FOR_COMMAND)
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
53
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
54 distclean::
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
55 rm -f Makefile
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
56
3191
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
57 maintainer-clean::
e4f4b2d26ee9 [project @ 1998-10-23 05:43:59 by jwe]
jwe
parents: 3028
diff changeset
58 rm -f tags TAGS Makefile
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
59
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
60 dist:
6467
a84de7048629 [project @ 2007-03-27 16:05:15 by jwe]
jwe
parents: 6358
diff changeset
61 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/statistics
3297
b68ef5dec3bd [project @ 1999-10-19 17:52:27 by jwe]
jwe
parents: 3199
diff changeset
62 for dir in $(DISTSUBDIRS); do mkdir ../../`cat ../../.fname`/scripts/statistics/$$dir; $(MAKE) -C $$dir $@; done
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
63 .PHONY: dist