changeset 9749:807a3720e6e2

Clean interpreter/Makefile.in to remove a few non-functional targets
author Rik <rdrider0-list@yahoo.com>
date Tue, 20 Oct 2009 22:05:15 -0700
parents d6b2b708b6b0
children 7bf4f3d64955
files doc/ChangeLog doc/interpreter/Makefile.in
diffstat 2 files changed, 11 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Wed Oct 21 09:51:58 2009 -0400
+++ b/doc/ChangeLog	Tue Oct 20 22:05:15 2009 -0700
@@ -1,3 +1,8 @@
+2009-10-20  Rik <octave@nomad.inbox5.com>
+
+	* interpreter/Makefile.in: Clean Makefile.in and remove a few
+	non-functional targets
+
 2009-10-13  Rik <octave@nomad.inbox5.com>
 
 	* various: Fix various incorrect usages of deffn and deftypefn macros
--- a/doc/interpreter/Makefile.in	Wed Oct 21 09:51:58 2009 -0400
+++ b/doc/interpreter/Makefile.in	Tue Oct 20 22:05:15 2009 -0700
@@ -31,6 +31,8 @@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@
 
+################################################################################
+
 SCRIPT_SOURCES = sparseimages.m interpimages.m geometryimages.m plotimages.m
 
 POLYNOMIAL_FILES_NODIR = \
@@ -155,8 +157,6 @@
 
 DISTDIRS = HTML
 
-DISTSUBDIRS :=
-
 SUBDIRS :=
 
 # Look for version.h to get version information.
@@ -341,12 +341,6 @@
 	for f in $(MAN_BASE); do rm -f $(DESTDIR)$(man1dir)/$$f$(man1ext); done
 .PHONY: uninstall
 
-tags: $(SOURCES)
-	ctags $(SOURCES)
-
-TAGS: $(SOURCES)
-	etags $(SOURCES)
-
 spell: $(SPELL)
 .PHONY: spell
 
@@ -357,7 +351,7 @@
 	octave.cps octave.fns octave.ins octave.kys octave.ops \
 	octave.pgs octave.rds octave.tps octave.vrs octave.aux \
 	octave.log octave.toc \
-	munge-texi$(BUILD_EXEEXT) munge-texi.o \
+	munge-texi.o \
 	octave-a4.cp octave-a4.fn octave-a4.in \
 	octave-a4.ky octave-a4.op octave-a4.pg octave-a4.rd octave-a4.tp octave-a4.vr \
 	octave-a4.cps octave-a4.fns octave-a4.ins octave-a4.kys octave-a4.ops \
@@ -372,11 +366,11 @@
 
 distclean: clean
 	@$(subdir-for-command)
-	rm -f tags TAGS Makefile
+	rm -f Makefile
 .PHONY: distclean
 
 maintainer-clean: distclean clean-texi
-	rm -f doc-cache stmp-html $(FORMATTED) $(IMAGES)
+	rm -f munge-texi$(BUILD_EXEEXT) doc-cache stmp-html $(FORMATTED) $(IMAGES)
 	rm -rf HTML
 .PHONY: maintainer-clean
 
@@ -384,11 +378,10 @@
 	rm -f $(SUB_TEXINFO) contributors.texi octave-a4.texi octave-smallbook.texi
 .PHONY: clean-texi
 
-dist: clean-texi all
+dist: all
 	ln $(DISTFILES) ../../`cat ../../.fname`/doc/interpreter
 	for dir in $(DISTDIRS); do \
 	  mkdir ../../`cat ../../.fname`/doc/interpreter/$$dir; \
 	  ln ../../doc/interpreter/$$dir/* ../../`cat ../../.fname`/doc/interpreter/$$dir; \
 	done
-	for dir in $(DISTSUBDIRS); do mkdir ../../`cat ../../.fname`/doc/interpreter/$$dir; $(MAKE) -C $$dir $@; done
 .PHONY: dist