You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/03/02 08:06:05 UTC

cvs commit: apache-1.3/src/os/unix Makefile.tmpl

dgaudet     98/03/01 23:06:05

  Modified:    src      Makefile.tmpl
               src/main Makefile.tmpl
               src/modules/proxy Makefile.tmpl
               src/modules/standard Makefile.tmpl
               src/modules/test Makefile.tmpl
               src/os/unix Makefile.tmpl
  Log:
  update depend
  
  Revision  Changes    Path
  1.81      +5 -3      apache-1.3/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Makefile.tmpl,v
  retrieving revision 1.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- Makefile.tmpl	1998/02/28 15:39:29	1.80
  +++ Makefile.tmpl	1998/03/02 07:05:53	1.81
  @@ -64,7 +64,7 @@
   
   # We really don't expect end users to use this rule. It builds a
   # httpd binary with all modules built in and then updates the
  -# include/hide.h file according to the exported symbols of this
  +# $(INCDIR)/hide.h file according to the exported symbols of this
   # binary. So run this target once after a new function was added
   # to the source.
   updatehide:
  @@ -74,7 +74,7 @@
   	$(MAKE) clean 
   	./Configure -file Configuration.for-hide
   	$(MAKE) httpd
  -	./helpers/UpdateHide httpd include/hide.h
  +	./helpers/UpdateHide httpd $(INCDIR)/hide.h
   	$(MAKE) clean
   	rm -f Configuration.for-hide
   
  @@ -83,7 +83,9 @@
   $(OBJS): Makefile
   
   # DO NOT REMOVE
  -buildmark.o: buildmark.c
  +buildmark.o: buildmark.c $(INCDIR)/conf.h os/unix/os.h $(INCDIR)/hsregex.h
   modules.o: modules.c $(INCDIR)/httpd.h $(INCDIR)/conf.h os/unix/os.h \
    $(INCDIR)/hsregex.h $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
    $(INCDIR)/util_uri.h $(INCDIR)/http_config.h
  +t.o: t.c
  +tt.o: tt.c
  
  
  
  1.16      +2 -1      apache-1.3/src/main/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/Makefile.tmpl,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Makefile.tmpl	1998/02/28 10:31:56	1.15
  +++ Makefile.tmpl	1998/03/02 07:05:55	1.16
  @@ -57,7 +57,8 @@
    $(INCDIR)/hsregex.h $(INCDIR)/alloc.h $(INCDIR)/buff.h \
    $(INCDIR)/ap.h $(INCDIR)/util_uri.h $(INCDIR)/http_main.h \
    $(INCDIR)/http_log.h
  -fnmatch.o: fnmatch.c $(INCDIR)/fnmatch.h
  +fnmatch.o: fnmatch.c $(INCDIR)/conf.h ../os/unix/os.h \
  + $(INCDIR)/hsregex.h $(INCDIR)/fnmatch.h
   http_bprintf.o: http_bprintf.c $(INCDIR)/httpd.h $(INCDIR)/conf.h \
    ../os/unix/os.h $(INCDIR)/hsregex.h $(INCDIR)/alloc.h \
    $(INCDIR)/buff.h $(INCDIR)/ap.h $(INCDIR)/util_uri.h
  
  
  
  1.5       +1 -1      apache-1.3/src/modules/proxy/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/Makefile.tmpl,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.tmpl	1998/02/28 10:32:01	1.4
  +++ Makefile.tmpl	1998/03/02 07:05:56	1.5
  @@ -37,7 +37,7 @@
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
    $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
    $(INCDIR)/http_protocol.h $(INCDIR)/explain.h \
  - $(INCDIR)/http_log.h
  + $(INCDIR)/http_log.h $(INCDIR)/http_vhost.h
   proxy_cache.o: proxy_cache.c mod_proxy.h $(INCDIR)/httpd.h \
    $(INCDIR)/conf.h ../../os/unix/os.h $(INCDIR)/hsregex.h \
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  
  
  
  1.9       +1 -1      apache-1.3/src/modules/standard/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/Makefile.tmpl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Makefile.tmpl	1998/02/28 10:32:02	1.8
  +++ Makefile.tmpl	1998/03/02 07:05:58	1.9
  @@ -162,7 +162,7 @@
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
    $(INCDIR)/util_uri.h $(INCDIR)/http_config.h \
    $(INCDIR)/http_request.h $(INCDIR)/http_core.h \
  - $(INCDIR)/http_log.h mod_rewrite.h
  + $(INCDIR)/http_log.h $(INCDIR)/http_vhost.h mod_rewrite.h
   mod_setenvif.o: mod_setenvif.c $(INCDIR)/httpd.h \
    $(INCDIR)/conf.h ../../os/unix/os.h $(INCDIR)/hsregex.h \
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  
  
  
  1.4       +10 -5     apache-1.3/src/modules/test/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/test/Makefile.tmpl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile.tmpl	1998/02/22 04:37:18	1.3
  +++ Makefile.tmpl	1998/03/02 07:06:03	1.4
  @@ -17,8 +17,13 @@
   $(OBJS): Makefile
   
   # DO NOT REMOVE
  -mod_rndchunk.o: mod_rndchunk.c ../../include/httpd.h \
  - ../../include/conf.h ../../os/unix/os.h ../../include/hsregex.h \
  - ../../include/alloc.h ../../include/buff.h ../../include/ap.h \
  - ../../include/http_protocol.h ../../include/http_config.h \
  - ../../include/http_main.h
  +mod_rndchunk.o: mod_rndchunk.c $(INCDIR)/httpd.h \
  + $(INCDIR)/conf.h ../../os/unix/os.h $(INCDIR)/hsregex.h \
  + $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  + $(INCDIR)/util_uri.h $(INCDIR)/http_protocol.h \
  + $(INCDIR)/http_config.h $(INCDIR)/http_main.h
  +mod_test_util_uri.o: mod_test_util_uri.c $(INCDIR)/httpd.h \
  + $(INCDIR)/conf.h ../../os/unix/os.h $(INCDIR)/hsregex.h \
  + $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  + $(INCDIR)/util_uri.h $(INCDIR)/http_protocol.h \
  + $(INCDIR)/http_config.h $(INCDIR)/http_main.h
  
  
  
  1.13      +4 -2      apache-1.3/src/os/unix/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/os/unix/Makefile.tmpl,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile.tmpl	1998/02/22 04:37:19	1.12
  +++ Makefile.tmpl	1998/03/02 07:06:04	1.13
  @@ -35,5 +35,7 @@
   $(OBJS): Makefile
   
   # DO NOT REMOVE
  -os-inline.o: os-inline.c
  -os.o: os.c os.h
  +os-inline.o: os-inline.c $(INCDIR)/conf.h ../../os/unix/os.h \
  + $(INCDIR)/hsregex.h
  +os.o: os.c $(INCDIR)/conf.h ../../os/unix/os.h \
  + $(INCDIR)/hsregex.h os.h os-inline.c