annotate scripts/general/Makefile.in @ 6283:7099f1ae465e

[project @ 2007-02-08 08:37:00 by jwe]
author jwe
date Thu, 08 Feb 2007 08:37:00 +0000
parents f9ac7ebf0e19
children 61091f4af6e4
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 #
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
2 # Makefile for octave's scripts/general directory
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
3 #
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
4 # John W. Eaton
1452
2eb569ed50bf [project @ 1995-09-20 04:23:34 by jwe]
jwe
parents: 1391
diff changeset
5 # jwe@bevo.che.wisc.edu
2eb569ed50bf [project @ 1995-09-20 04:23:34 by jwe]
jwe
parents: 1391
diff changeset
6 # University of Wisconsin-Madison
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
7 # Department of Chemical Engineering
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
8
682
646ff1b3ff9a [project @ 1994-09-09 15:44:16 by jwe]
jwe
parents: 681
diff changeset
9 TOPDIR = ../..
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
10
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
11 script_sub_dir = general
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
12
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
13 srcdir = @srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
14 top_srcdir = @top_srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
15 VPATH = @srcdir@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
16
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
17 include $(TOPDIR)/Makeconf
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
18
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
19 INSTALL = @INSTALL@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
20 INSTALL_PROGRAM = @INSTALL_PROGRAM@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
21 INSTALL_DATA = @INSTALL_DATA@
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
22
6283
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
23 SOURCES = __isequal__.m bicubic.m bitcmp.m bitget.m bitset.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
24 blkdiag.m cart2pol.m cart2sph.m cell2mat.m circshift.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
25 common_size.m cplxpair.m cumtrapz.m deal.m diff.m flipdim.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
26 fliplr.m flipud.m gradient.m ind2sub.m int2str.m interp1.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
27 interp2.m interpft.m is_duplicate_entry.m isa.m isdefinite.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
28 isdir.m isequal.m isequalwithequalnans.m isscalar.m issquare.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
29 issymmetric.m isvector.m logical.m logspace.m lookup.m mod.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
30 nargchk.m nextpow2.m nthroot.m num2str.m perror.m pol2cart.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
31 polyarea.m postpad.m prepad.m quadl.m randperm.m rem.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
32 repmat.m rot90.m rotdim.m shift.m shiftdim.m sortrows.m \
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
33 sph2cart.m strerror.m sub2ind.m trapz.m tril.m triu.m
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
34
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
35 DISTFILES = Makefile.in $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
36
6283
7099f1ae465e [project @ 2007-02-08 08:37:00 by jwe]
jwe
parents: 5866
diff changeset
37 FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES))
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
38 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
39
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
40 all: PKG_ADD
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
41 .PHONY: all
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
42
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
43 install install-strip:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
44 $(do-script-install)
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
45 .PHONY: install install-strip
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
46
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
47 uninstall:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
48 $(do-script-uninstall)
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
49 .PHONY: uninstall
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
50
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
51 clean:
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
52 .PHONY: clean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
53
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
54 PKG_ADD: $(FCN_FILES)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
55 @echo "making PKG_ADD"
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
56 @$(do-mkpkgadd)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
57
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
58 tags: $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
59 ctags $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
60
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
61 TAGS: $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
62 etags $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
63
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
64 mostlyclean: clean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
65 .PHONY: mostlyclean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
66
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
67 distclean: clean
5866
f9ac7ebf0e19 [project @ 2006-06-28 16:05:22 by jwe]
jwe
parents: 5597
diff changeset
68 rm -f Makefile PKG_ADD
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
69 .PHONY: distclean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
70
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
71 maintainer-clean: distclean
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
72 rm -f tags TAGS
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
73 .PHONY: maintainer-clean
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
74
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
75 dist:
689
9d000ef9aae8 [project @ 1994-09-10 05:04:59 by jwe]
jwe
parents: 688
diff changeset
76 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/general
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
77 .PHONY: dist