# HG changeset patch # User jwe # Date 809052182 0 # Node ID 1270bf19f7fe1314cd5e7967d30c1e3d317c9730 # Parent 74716278ccb3cf803780415cbc96eb3ce7e92083 [project @ 1995-08-22 00:43:02 by jwe] diff -r 74716278ccb3 -r 1270bf19f7fe Makefile.in --- a/Makefile.in Wed Jul 05 05:03:57 1995 +0000 +++ b/Makefile.in Tue Aug 22 00:43:02 1995 +0000 @@ -28,14 +28,20 @@ TARGETS = octave-bug libcruft liboctave kpathsea dld info plplot readline \ src scripts doc check octave.info INSTALL.info BUGS.info \ - install uninstall tags TAGS clean mostlyclean distclean \ - realclean clean-tar dist-z links-for-dist dist-tar \ + install uninstall tags TAGS clean-tar dist-z links-for-dist dist-tar \ clean-dist-tar dist links-for-bin-dist bin-dist-tar \ clean-bin-dist-tar binary-dist doc-dist-tar clean-doc-dist-tar \ doc-dist local-dist-tar clean-local-dist-tar local-dist \ split-dist split-local-dist snapshot-z snapshot snapshot-version +NO_DEP_TARGETS = clean mostlyclean distclean realclean + +ALL_TARGETS = $(TARGETS) $(NO_DEP_TARGETS) + $(TARGETS): FORCE $(MAKE) -f octMakefile $@ +$(NO_DEP_TARGETS): FORCE + $(MAKE) -f octMakefile omit_deps=true $@ + FORCE: diff -r 74716278ccb3 -r 1270bf19f7fe liboctave/Makefile.in --- a/liboctave/Makefile.in Wed Jul 05 05:03:57 1995 +0000 +++ b/liboctave/Makefile.in Tue Aug 22 00:43:02 1995 +0000 @@ -114,4 +114,6 @@ ln $(DISTFILES) ../`cat ../.fname`/liboctave .PHONY: dist +ifndef $(omit_deps) -include $(MAKEDEPS) +endif diff -r 74716278ccb3 -r 1270bf19f7fe src/Makefile.in --- a/src/Makefile.in Wed Jul 05 05:03:57 1995 +0000 +++ b/src/Makefile.in Tue Aug 22 00:43:02 1995 +0000 @@ -228,4 +228,6 @@ check: all .PHONY: check +ifndef $(omit_deps) -include $(MAKEDEPS) +endif