comparison scripts/pkg/Makefile.in @ 5811:2ece6d7c7b5d

[project @ 2006-05-11 07:00:19 by jwe]
author jwe
date Thu, 11 May 2006 07:00:19 +0000
parents
children f9ac7ebf0e19
comparison
equal deleted inserted replaced
5810:34010a1e9aea 5811:2ece6d7c7b5d
1 #
2 # Makefile for octave's scripts/pkg directory
3 #
4 # John W. Eaton
5 # jwe@bevo.che.wisc.edu
6 # University of Wisconsin-Madison
7 # Department of Chemical Engineering
8
9 TOPDIR = ../..
10
11 script_sub_dir = plot
12
13 srcdir = @srcdir@
14 top_srcdir = @top_srcdir@
15 VPATH = @srcdir@
16
17 include $(TOPDIR)/Makeconf
18
19 INSTALL = @INSTALL@
20 INSTALL_PROGRAM = @INSTALL_PROGRAM@
21 INSTALL_DATA = @INSTALL_DATA@
22
23 SOURCES = *.m
24
25 DISTFILES = Makefile.in $(SOURCES)
26
27 FCN_FILES = $(wildcard $(srcdir)/*.m)
28 FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
29
30 all: PKG_ADD
31 .PHONY: all
32
33 install install-strip:
34 $(do-script-install)
35 .PHONY: install install-strip
36
37 uninstall:
38 $(do-script-uninstall)
39 .PHONY: uninstall
40
41 clean:
42 .PHONY: clean
43
44 PKG_ADD: $(FCN_FILES)
45 @echo "making PKG_ADD"
46 @$(do-mkpkgadd)
47
48 tags: $(SOURCES)
49 ctags $(SOURCES)
50
51 TAGS: $(SOURCES)
52 etags $(SOURCES)
53
54 mostlyclean: clean
55 .PHONY: mostlyclean
56
57 distclean: clean
58 rm -f Makefile
59 .PHONY: distclean
60
61 maintainer-clean: distclean
62 rm -f tags TAGS
63 .PHONY: maintainer-clean
64
65 dist:
66 ln $(DISTFILES) ../../`cat ../../.fname`/scripts/pkg
67 .PHONY: dist