changeset 5811:2ece6d7c7b5d

[project @ 2006-05-11 07:00:19 by jwe]
author jwe
date Thu, 11 May 2006 07:00:19 +0000
parents 34010a1e9aea
children 653405a3af98
files scripts/ChangeLog scripts/configure.in scripts/pkg/Makefile.in
diffstat 3 files changed, 71 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu May 11 06:41:51 2006 +0000
+++ b/scripts/ChangeLog	Thu May 11 07:00:19 2006 +0000
@@ -1,5 +1,8 @@
 2006-05-11  John W. Eaton  <jwe@octave.org>
 
+	* pkg/Makefile.in: New file.
+	* configure.in (AC_CONFIG_FILES): Add pkg/Makefile to the list.
+
 	* path/genpath.m: New file.
 
 2006-05-10  John W. Eaton  <jwe@octave.org>
--- a/scripts/configure.in	Thu May 11 06:41:51 2006 +0000
+++ b/scripts/configure.in	Thu May 11 07:00:19 2006 +0000
@@ -34,7 +34,7 @@
 	  control/util/Makefile deprecated/Makefile elfun/Makefile \
 	  finance/Makefile general/Makefile image/Makefile io/Makefile \
 	  linear-algebra/Makefile miscellaneous/Makefile \
-	  optimization/Makefile path/Makefile plot/Makefile \
+	  optimization/Makefile path/Makefile pkg/Makefile plot/Makefile \
 	  polynomial/Makefile quaternion/Makefile set/Makefile \
 	  signal/Makefile sparse/Makefile specfun/Makefile \
 	  special-matrix/Makefile startup/Makefile statistics/Makefile \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/pkg/Makefile.in	Thu May 11 07:00:19 2006 +0000
@@ -0,0 +1,67 @@
+#
+# Makefile for octave's scripts/pkg directory
+#
+# John W. Eaton
+# jwe@bevo.che.wisc.edu
+# University of Wisconsin-Madison
+# Department of Chemical Engineering
+
+TOPDIR = ../..
+
+script_sub_dir = plot
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+
+include $(TOPDIR)/Makeconf
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+
+SOURCES = *.m
+
+DISTFILES = Makefile.in $(SOURCES)
+
+FCN_FILES = $(wildcard $(srcdir)/*.m)
+FCN_FILES_NO_DIR = $(notdir $(FCN_FILES))
+
+all: PKG_ADD
+.PHONY: all
+
+install install-strip:
+	$(do-script-install)
+.PHONY: install install-strip
+
+uninstall:
+	$(do-script-uninstall)
+.PHONY: uninstall
+
+clean:
+.PHONY: clean
+
+PKG_ADD: $(FCN_FILES)
+	@echo "making PKG_ADD"
+	@$(do-mkpkgadd)
+
+tags: $(SOURCES)
+	ctags $(SOURCES)
+
+TAGS: $(SOURCES)
+	etags $(SOURCES)
+
+mostlyclean: clean
+.PHONY: mostlyclean
+
+distclean: clean
+	rm -f Makefile
+.PHONY: distclean
+
+maintainer-clean: distclean
+	rm -f tags TAGS
+.PHONY: maintainer-clean
+
+dist:
+	ln $(DISTFILES) ../../`cat ../../.fname`/scripts/pkg
+.PHONY: dist