Mercurial > hg > octave-lyh
annotate scripts/specfun/Makefile.in @ 9119:3b810beddfa6
Added help texts and tests.
author | Thomas Treichl <Thomas.Treichl@gmx.net> |
---|---|
date | Tue, 14 Apr 2009 22:02:05 +0200 |
parents | eb63fbe60fab |
children |
rev | line source |
---|---|
715 | 1 # Makefile for octave's scripts/specfun directory |
2 # | |
8920 | 3 # Copyright (C) 1994, 1995, 1996, 1997, 2002, 2005, 2006, 2007, 2008 |
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/>. | |
715 | 21 |
22 TOPDIR = ../.. | |
23 | |
24 script_sub_dir = specfun | |
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 = bessel.m beta.m betai.m betaln.m erfinv.m factor.m \ |
7740 | 37 factorial.m gammai.m isprime.m legendre.m nchoosek.m \ |
7621
4682dda22527
Add the reallog, realsqrt and realpow functions
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
38 perms.m pow2.m primes.m reallog.m realpow.m realsqrt.m |
715 | 39 |
6797 | 40 DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(SOURCES)) |
715 | 41 |
6283 | 42 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) |
715 | 43 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) |
44 | |
5597 | 45 all: PKG_ADD |
715 | 46 .PHONY: all |
47 | |
2811 | 48 install install-strip: |
4225 | 49 $(do-script-install) |
2811 | 50 .PHONY: install install-strip |
715 | 51 |
52 uninstall: | |
4225 | 53 $(do-script-uninstall) |
715 | 54 .PHONY: uninstall |
55 | |
56 clean: | |
57 .PHONY: clean | |
58 | |
5597 | 59 PKG_ADD: $(FCN_FILES) |
60 @echo "making PKG_ADD" | |
61 @$(do-mkpkgadd) | |
62 | |
715 | 63 tags: $(SOURCES) |
64 ctags $(SOURCES) | |
65 | |
66 TAGS: $(SOURCES) | |
67 etags $(SOURCES) | |
68 | |
69 mostlyclean: clean | |
70 .PHONY: mostlyclean | |
71 | |
72 distclean: clean | |
5866 | 73 rm -f Makefile PKG_ADD |
715 | 74 .PHONY: distclean |
75 | |
1391 | 76 maintainer-clean: distclean |
715 | 77 rm -f tags TAGS |
1391 | 78 .PHONY: maintainer-clean |
715 | 79 |
80 dist: | |
6467 | 81 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/specfun |
715 | 82 .PHONY: dist |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7621
diff
changeset
|
83 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7621
diff
changeset
|
84 check-m-sources: |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7621
diff
changeset
|
85 @$(do-check-m-sources) |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7621
diff
changeset
|
86 .PHONY: check-m-sources |