rbb         99/12/21 14:05:05

  Modified:    src/lib/apr Makefile.in
  Log:
  Cleanup the Makefile for APR a bit.  Get rid of some of the echos, and
  just display the commands as they are executed.
  
  Revision  Changes    Path
  1.14      +2 -6      apache-2.0/src/lib/apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/Makefile.in,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile.in       1999/12/21 16:04:52     1.13
  +++ Makefile.in       1999/12/21 22:05:04     1.14
  @@ -42,12 +42,8 @@
        @rm -Rf objs
        @mkdir objs
        @rm -f @[EMAIL PROTECTED]
  -     @echo "===> Copying object files to objs directory"
  -     @for i in $(SUBDIRS); do cp $$i/*.o objs ; done;
  -     @echo "<=== Done Copying files"
  -     @echo "===> Creating unified library"
  -     @$(AR) cr @[EMAIL PROTECTED] objs/*.o
  -     @echo "<=== Library built"
  +     for i in $(SUBDIRS); do cp $$i/*.o objs ; done;
  +     $(AR) cr @[EMAIL PROTECTED] objs/*.o
   
   clean: subdirs_clean
        $(RM) -f *.o *.a *.so objs/*.o
  
  
  

Reply via email to