bjh         99/08/28 01:57:15

  Modified:    src/lib/apr/file_io/os2 Makefile.in
               src/lib/apr/locks/os2 Makefile.in
               src/lib/apr/misc/os2 Makefile.in
               src/lib/apr/network_io/os2 Makefile.in
               src/lib/apr/threadproc/os2 Makefile.in
               src/lib/apr/time/os2 Makefile.in
  Log:
  Generate dependencies for APR OS/2 modules.
  
  Revision  Changes    Path
  1.3       +37 -19    apache-2.0/src/lib/apr/file_io/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:25:35     1.2
  +++ Makefile.in       1999/08/28 08:57:10     1.3
  @@ -50,28 +50,46 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -dir.o: dir.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -fileacc.o: fileacc.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -filedup.o: filedup.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -filestat.o: filestat.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -open.o: open.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h \
  - ../include/apr_lib.h ../include/apr_config.h \
  - ../include/hsregex.h
  -pipe.o: pipe.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -readwrite.o: readwrite.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  -seek.o: seek.c ../../include/apr_file_io.h fileio.h \
  - ../../include/apr_errno.h ../../include/apr_general.h
  +dir.o: dir.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +fileacc.o: fileacc.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +filedup.o: filedup.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +filestat.o: filestat.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +maperrorcode.o: maperrorcode.c $(INCDIR1)/apr_file_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h
  +open.o: open.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +pipe.o: pipe.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +readwrite.o: readwrite.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  +seek.o: seek.c fileio.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h
  
  
  
  1.3       +8 -10     apache-2.0/src/lib/apr/locks/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/locks/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:25:38     1.2
  +++ Makefile.in       1999/08/28 08:57:11     1.3
  @@ -43,19 +43,17 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                   -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
  +                   -e '1,$$s: $(INCDIR2)/: $$(INCDIR2)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -crossproc.o: crossproc.c ../../include/apr_lock.h \
  - ../../include/apr_general.h ../../include/apr_errno.h locks.h \
  - ../../include/apr_file_io.h ../../file_io/unix/fileio.h
  -intraproc.o: intraproc.c ../../include/apr_lock.h \
  - ../../include/apr_general.h ../../include/apr_errno.h locks.h \
  - ../../include/apr_file_io.h ../../file_io/unix/fileio.h
  -locks.o: locks.c ../../include/apr_lock.h \
  - ../../include/apr_general.h ../../include/apr_errno.h locks.h \
  - ../../include/apr_file_io.h ../../file_io/unix/fileio.h
  +locks.o: locks.c $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_lib.h $(INCDIR1)/apr_file_io.h \
  + $(INCDIR1)/hsregex.h locks.h $(INCDIR1)/apr_lock.h \
  + $(INCDIR2)/fileio.h
  
  
  
  1.3       +6 -5      apache-2.0/src/lib/apr/misc/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:25:48     1.2
  +++ Makefile.in       1999/08/28 08:57:12     1.3
  @@ -43,14 +43,15 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                   -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -start.o: start.c ../../include/apr_general.h \
  - ../../include/apr_errno.h ../include/apr_pools.h \
  - ../include/apr_lib.h ../include/apr_config.h \
  - ../include/hsregex.h
  +start.o: start.c $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR)/apr_pools.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h misc.h
  
  
  
  1.3       +17 -14    apache-2.0/src/lib/apr/network_io/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/network_io/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:26:04     1.2
  +++ Makefile.in       1999/08/28 08:57:13     1.3
  @@ -45,23 +45,26 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                   -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -poll.o: poll.c ../../include/apr_network_io.h \
  - ../../include/apr_general.h ../../include/apr_errno.h \
  - networkio.h
  -sendrecv.o: sendrecv.c ../../include/apr_errno.h \
  - ../../include/apr_general.h ../../include/apr_network_io.h \
  - networkio.h
  -sockets.o: sockets.c ../../include/apr_network_io.h \
  - ../../include/apr_general.h ../../include/apr_errno.h \
  - networkio.h $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
  - $(INCDIR)/hsregex.h
  -sockopt.o: sockopt.c ../../include/apr_network_io.h \
  - ../../include/apr_general.h ../../include/apr_errno.h \
  - networkio.h
  +poll.o: poll.c networkio.h $(INCDIR1)/apr_network_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h
  +sendrecv.o: sendrecv.c networkio.h $(INCDIR1)/apr_network_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h
  +sockets.o: sockets.c networkio.h $(INCDIR1)/apr_network_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h
  +sockopt.o: sockopt.c networkio.h $(INCDIR1)/apr_network_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h
  
  
  
  1.3       +26 -14    apache-2.0/src/lib/apr/threadproc/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:26:09     1.2
  +++ Makefile.in       1999/08/28 08:57:14     1.3
  @@ -47,25 +47,37 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                   -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
  +                   -e '1,$$s: $(INCDIR2)/: $$(INCDIR2)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -proc.o: proc.c threadproc.h ../../include/apr_thread_proc.h \
  - ../../include/apr_file_io.h ../../include/apr_general.h \
  - ../../include/apr_errno.h ../../file_io/unix/fileio.h
  -signals.o: signals.c threadproc.h ../../include/apr_thread_proc.h \
  - ../../include/apr_file_io.h ../../include/apr_general.h \
  - ../../include/apr_errno.h ../../file_io/unix/fileio.h
  -thread.o: thread.c threadproc.h ../../include/apr_thread_proc.h \
  - ../../include/apr_file_io.h ../../include/apr_general.h \
  - ../../include/apr_errno.h
  +proc.o: proc.c threadproc.h $(INCDIR1)/apr_thread_proc.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_win.h $(INCDIR2)/fileio.h \
  + $(INCDIR1)/apr_lib.h $(INCDIR1)/hsregex.h
  +signals.o: signals.c threadproc.h $(INCDIR1)/apr_thread_proc.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_win.h $(INCDIR2)/fileio.h
  +thread.o: thread.c threadproc.h $(INCDIR1)/apr_thread_proc.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/apr_general.h \
  + $(INCDIR1)/apr_config.h $(INCDIR1)/apr_errno.h \
  + $(INCDIR1)/apr_win.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/hsregex.h $(INCDIR2)/fileio.h
   threadcancel.o: threadcancel.c threadproc.h \
  - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \
  - ../../include/apr_general.h ../../include/apr_errno.h
  + $(INCDIR1)/apr_thread_proc.h $(INCDIR1)/apr_file_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_win.h \
  + $(INCDIR2)/fileio.h
   threadpriv.o: threadpriv.c threadproc.h \
  - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \
  - ../../include/apr_general.h ../../include/apr_errno.h
  + $(INCDIR1)/apr_thread_proc.h $(INCDIR1)/apr_file_io.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_win.h \
  + $(INCDIR1)/apr_lib.h $(INCDIR1)/hsregex.h \
  + $(INCDIR2)/fileio.h
  
  
  
  1.3       +10 -9     apache-2.0/src/lib/apr/time/os2/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/time/os2/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in       1999/08/27 16:26:11     1.2
  +++ Makefile.in       1999/08/28 08:57:14     1.3
  @@ -43,18 +43,19 @@
   depend:
        cp Makefile.in Makefile.in.bak \
            && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  -         && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  +         && gcc -MM $(INCLUDES) $(CFLAGS) *.c | sed -e "s%\\\\\(.\)%/\\1%g" 
>> Makefile.new \
            && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  +                   -e '1,$$s: $(INCDIR1)/: $$(INCDIR1)/:g' \
                   -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
                > Makefile.in \
            && rm Makefile.new
   
   # DO NOT REMOVE
  -access.o: access.c atime.h ../../include/apr_time.h \
  - ../../include/apr_general.h ../../include/apr_errno.h \
  - $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
  - $(INCDIR)/hsregex.h
  -time.o: time.c atime.h ../../include/apr_time.h \
  - ../../include/apr_general.h ../../include/apr_errno.h \
  - $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
  - $(INCDIR)/hsregex.h
  +access.o: access.c atime.h $(INCDIR1)/apr_time.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h
  +time.o: time.c atime.h $(INCDIR1)/apr_time.h \
  + $(INCDIR1)/apr_general.h $(INCDIR1)/apr_config.h \
  + $(INCDIR1)/apr_errno.h $(INCDIR1)/apr_lib.h \
  + $(INCDIR1)/apr_file_io.h $(INCDIR1)/hsregex.h
  
  
  

Reply via email to