gstein      01/03/09 15:02:37

  Modified:    xml/expat/lib Makefile.in
  Log:
  forget the dependency generation (which is non-portable anyways); we do this
  explicitly since they are so simple
  
  Revision  Changes    Path
  1.2       +3 -17     apr-util/xml/expat/lib/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/xml/expat/lib/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -u -r1.1 -r1.2
  --- Makefile.in       2001/02/28 14:41:26     1.1
  +++ Makefile.in       2001/03/09 23:02:36     1.2
  @@ -107,24 +107,10 @@
   .PHONY: all clean distclean maintainer-clean
   
   .c.o:
  -     @echo '$(COMPILE) -c $<'; \
  -     $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
  -     @-cp .deps/$(*F).pp .deps/$(*F).P; \
  -     tr ' ' '\012' < .deps/$(*F).pp \
  -       | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
  -         >> .deps/$(*F).P; \
  -     rm .deps/$(*F).pp
  +     $(COMPILE) -c $<
   
   .c.lo:
  -     @echo '$(LTCOMPILE) -c $<'; \
  -     test -d .deps || mkdir .deps ; \
  -     $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
  -     @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
  -       < .deps/$(*F).pp > .deps/$(*F).P; \
  -     tr ' ' '\012' < .deps/$(*F).pp \
  -       | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
  -         >> .deps/$(*F).P; \
  -     rm -f .deps/$(*F).pp
  +     $(LTCOMPILE) -c $<
   
   Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) \
  @@ -138,7 +124,7 @@
   
   clean:
        rm -f $(LIBRARY) *.o *.lo *~
  -     rm -rf .libs _libs .deps
  +     rm -rf .libs _libs
   
   distclean: clean
        rm -f Makefile
  
  
  

Reply via email to