# HG changeset patch # User jwe # Date 1068862607 0 # Node ID 386daaaf512761931dc1fc7c59a61c6164a974d6 # Parent 65b9c4c624914185ca5249d9466dc050ed539aeb [project @ 2003-11-15 02:16:47 by jwe] diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,3 @@ -2003-11-14 John W. Eaton - - * octMakefile.in (dist): Make stamp-prereq in liboctave and src - before making the dist target for all the $(DISTSUBDIRS). - 2003-11-12 John W. Eaton * configure.in: If we need alloca, then also include it in LIBGLOB. diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-14 John W. Eaton + + * interpreter/Makefile.in (liboctave-prereq): New target. + (src-DOCSTRINGS): Depend on it. + 2003-08-27 John W. Eaton * refcard/Makefile.in (refcard-a4.pdf, refcard-legal.pdf, diff --git a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in --- a/doc/interpreter/Makefile.in +++ b/doc/interpreter/Makefile.in @@ -73,7 +73,11 @@ munge-texi$(BUILD_EXEEXT): munge-texi.cc $(BUILD_CXX) $(BUILD_CXXFLAGS) -o $@ $^ $(BUILD_LDFLAGS) -src-DOCSTRINGS: +liboctave-prereq: + $(MAKE) -C ../../liboctave stamp-prereq +.PHONY: liboctave-prereq + +src-DOCSTRINGS: liboctave-prereq $(MAKE) -C ../../src DOCSTRINGS .PHONY: src-DOCSTRINGS diff --git a/octMakefile.in b/octMakefile.in --- a/octMakefile.in +++ b/octMakefile.in @@ -164,9 +164,6 @@ mkdir `cat .fname` ln $(DISTFILES) `cat .fname` for dir in $(DISTDIRS); do ln -s ../$$dir `cat .fname`; done - for dir in liboctave src; do \ - $(MAKE) -C $$dir stamp-prereq; \ - done for dir in $(DISTSUBDIRS); do \ mkdir `cat .fname`/$$dir; \ $(MAKE) -C $$dir dist; \