gstein      01/02/17 14:25:47

  Modified:    .        Makefile.in
               .        Makefile.in
  Log:
  remove bogus dependencies
  
  The exports files are automatically rebuilt by a plain "make" at the
  top-level. "make foo.exports" won't do it, and we need to live with it until
  somebody finds a better way to do dynamic dependencies (portably).
  
  Revision  Changes    Path
  1.42      +1 -1      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -u -r1.41 -r1.42
  --- Makefile.in       2001/02/17 16:10:55     1.41
  +++ Makefile.in       2001/02/17 22:25:47     1.42
  @@ -61,7 +61,7 @@
            fi \
        fi
   
  -$(TARGET_EXPORTS): include/*.h
  +$(TARGET_EXPORTS):
        $(MKEXPORT) include/*.h > $@
   
   docs:
  
  
  
  1.21      +1 -1      apr-util/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/Makefile.in,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -u -r1.20 -r1.21
  --- Makefile.in       2001/02/17 16:10:55     1.20
  +++ Makefile.in       2001/02/17 22:25:47     1.21
  @@ -48,7 +48,7 @@
            fi \
        fi
   
  -$(TARGET_EXPORTS): include/*.h
  +$(TARGET_EXPORTS):
        $(AWK) -f @APR_SOURCE_DIR@/helpers/make_export.awk include/*.h > $@ ;
   
   docs:
  
  
  

Reply via email to