sascha      00/01/11 05:00:29

  Modified:    src/lib/apr Makefile.in
  Log:
  Add install and $(LIBAPR) target
  
  Revision  Changes    Path
  1.17      +10 -4     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.16
  retrieving revision 1.17
  diff -u -u -r1.16 -r1.17
  --- Makefile.in       2000/01/09 03:52:35     1.16
  +++ Makefile.in       2000/01/11 13:00:28     1.17
  @@ -28,6 +28,8 @@
   [EMAIL PROTECTED]@
   #shmem/@OSDIR@
   
  +LIBAPR = @[EMAIL PROTECTED]
  +
   #
   # Rules for turning inputs into outputs
   #
  @@ -38,13 +40,15 @@
   # Rules for building specific targets, starting with 'all' for
   # building the entire package.
   #
  -all: Makefile $(MODULES) subdirs
  +all: Makefile $(MODULES) subdirs $(LIBAPR)
  +
  +$(LIBAPR):
        @rm -rf objs
        @mkdir objs
  -     @rm -f @[EMAIL PROTECTED]
  +     @rm -f $@
        for i in $(SUBDIRS); do cp $$i/*.o objs ; done;
  -     $(AR) cr @[EMAIL PROTECTED] objs/*.o
  -     $(RANLIB) @[EMAIL PROTECTED]
  +     $(AR) cr $@ objs/*.o
  +     $(RANLIB) $@
   
   clean: subdirs_clean
        $(RM) -f *.o *.a *.so objs/*.o
  @@ -90,4 +94,6 @@
            echo "<=== $(SDP)lib/apr/$$i"; \
        done;
   
  +install: all
  +     
   # DO NOT REMOVE
  
  
  

Reply via email to