annotate scripts/miscellaneous/Makefile.in @ 6210:12b676a0b183 before-graphics-branch

[project @ 2006-12-07 02:37:17 by jwe]
author jwe
date Thu, 07 Dec 2006 02:37:17 +0000
parents f9ac7ebf0e19
children 7099f1ae465e
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/miscellaneous 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 = miscellaneous
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
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
23 SOURCES = *.m
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
24
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
25 DISTFILES = Makefile.in $(SOURCES)
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 FCN_FILES = $(wildcard $(srcdir)/*.m)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
28 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
29
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
30 all: PKG_ADD
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
31 .PHONY: all
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
32
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
33 install install-strip:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
34 $(do-script-install)
2811
1dd37f97364a [project @ 1997-03-12 23:06:13 by jwe]
jwe
parents: 2624
diff changeset
35 .PHONY: install install-strip
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
36
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
37 uninstall:
4225
fa4dfbc33ce5 [project @ 2002-12-18 03:07:48 by jwe]
jwe
parents: 3028
diff changeset
38 $(do-script-uninstall)
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
39 .PHONY: uninstall
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
40
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
41 clean:
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
42 .PHONY: clean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
43
5597
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
44 PKG_ADD: $(FCN_FILES)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
45 @echo "making PKG_ADD"
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
46 @$(do-mkpkgadd)
e0e48ea2a93c [project @ 2006-01-13 21:17:37 by jwe]
jwe
parents: 5196
diff changeset
47
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
48 tags: $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
49 ctags $(SOURCES)
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 TAGS: $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
52 etags $(SOURCES)
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
53
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
54 mostlyclean: clean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
55 .PHONY: mostlyclean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
56
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
57 distclean: clean
5866
f9ac7ebf0e19 [project @ 2006-06-28 16:05:22 by jwe]
jwe
parents: 5597
diff changeset
58 rm -f Makefile PKG_ADD
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
59 .PHONY: distclean
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
60
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
61 maintainer-clean: distclean
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
62 rm -f tags TAGS
1391
02a4e580de4e [project @ 1995-09-14 09:08:43 by jwe]
jwe
parents: 979
diff changeset
63 .PHONY: maintainer-clean
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
64
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
65 dist:
689
9d000ef9aae8 [project @ 1994-09-10 05:04:59 by jwe]
jwe
parents: 688
diff changeset
66 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/miscellaneous
681
8264438c7f5b [project @ 1994-09-09 15:18:05 by jwe]
jwe
parents:
diff changeset
67 .PHONY: dist