# HG changeset patch # User jwe # Date 758670676 0 # Node ID e0b1d5ed15ab9e268d0fe5adc4b7dd165c81b480 # Parent d8f9567f9e41213c0536b928654cd13379fec580 [project @ 1994-01-15 21:50:56 by jwe] diff -r d8f9567f9e41 -r e0b1d5ed15ab liboctave/Makefile.in --- a/liboctave/Makefile.in Sat Jan 15 21:43:28 1994 +0000 +++ b/liboctave/Makefile.in Sat Jan 15 21:51:16 1994 +0000 @@ -13,20 +13,6 @@ include $(TOPDIR)/Makeconf -# Here is a rule for generating dependencies for .cc files: - -%.d: %.cc - rm -f $@ - if test "$(srcdir)" = "." ; then \ - $(CXX) -MM $(CPPFLAGS) $(ALL_CXXFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' > $@.tmp && \ - mv $@.tmp $@ ; \ - else \ - $(CXX) -MM $(CPPFLAGS) $(ALL_CXXFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' -e 's,$(srcdir)/,,g' > $@.tmp && \ - mv $@.tmp $@ ; \ - fi - INCLUDES = Array.h Bounds.h CollocWt.h DAE.h DAEFunc.h FEGrid.h \ FSQP.h LinConst.h LP.h LPsolve.h MArray.h Matrix.h NLConst.h \ NLEqn.h NLFunc.h NLP.h NPSOL.h ODE.h ODEFunc.h Objective.h \ diff -r d8f9567f9e41 -r e0b1d5ed15ab src/Makefile.in --- a/src/Makefile.in Sat Jan 15 21:43:28 1994 +0000 +++ b/src/Makefile.in Sat Jan 15 21:51:16 1994 +0000 @@ -30,34 +30,6 @@ %.cc : %.l $(LEX) $(LFLAGS) $< > $(@F) -# Here is a rule for generating dependencies for .cc files: - -%.d: %.cc - rm -f $@ - -if test "$(srcdir)" = "." ; then \ - $(CXX) -MM $(CPPFLAGS) $(ALL_CXXFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' > $@.tmp && \ - mv $@.tmp $@ ; \ - else \ - $(CXX) -MM $(CPPFLAGS) $(ALL_CXXFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' -e 's,$(srcdir)/,,g' > $@.tmp && \ - mv $@.tmp $@ ; \ - fi - -# And one for .c files.too: - -%.d: %.c - rm -f $@ - -if test "$(srcdir)" = "." ; then \ - $(CC) -MM $(CPPFLAGS) $(ALL_CFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' > $@.tmp && \ - mv $@.tmp $@ ; \ - else \ - $(CC) -MM $(CPPFLAGS) $(ALL_CFLAGS) $< | \ - sed -e 's/$*\.o/& $@/g' -e 's,$(srcdir)/,,g' > $@.tmp && \ - mv $@.tmp $@ ; \ - fi - INCLUDES = arith-ops.h builtins.h dynamic-ld.h defaults.h.in \ defaults.h error.h f-balance.h f-chol.h f-colloc.h f-dassl.h \ f-det.h f-eig.h f-expm.h f-fft.h f-fsolve.h f-fsqp.h f-givens.h \