You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Chuck Murcko <ch...@hyperreal.com> on 1996/10/01 23:53:44 UTC

cvs commit: apache/src Makefile.tmpl

chuck       96/10/01 14:53:43

  Modified:    src       Makefile.tmpl
  Log:
  Cover our butts against broken makes. Make sure both commands run in the
  same shell.
  
  Revision  Changes    Path
  1.28      +4 -4      apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -C3 -r1.27 -r1.28
  *** Makefile.tmpl	1996/09/29 13:57:05	1.27
  --- Makefile.tmpl	1996/10/01 21:53:41	1.28
  ***************
  *** 1,4 ****
  ! # $Id: Makefile.tmpl,v 1.27 1996/09/29 13:57:05 chuck Exp $
    # Apache makefile template (well, suffix).
    
    # This is combined with the information in the "Configuration" file
  --- 1,4 ----
  ! # $Id: Makefile.tmpl,v 1.28 1996/10/01 21:53:41 chuck Exp $
    # Apache makefile template (well, suffix).
    
    # This is combined with the information in the "Configuration" file
  ***************
  *** 29,39 ****
    	$(CC) $(LFLAGS)  -o httpd $(OBJS) $(REGLIB) $(LIBS)
    
    regex/libregex.a:
  ! 	cd regex; make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB)
    
    modules/proxy/libproxy.a:
  ! 	cd modules/proxy; \
  ! 	make CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB)
    
    clean:
    	rm -f httpd $(OBJS) *pure*
  --- 29,39 ----
    	$(CC) $(LFLAGS)  -o httpd $(OBJS) $(REGLIB) $(LIBS)
    
    regex/libregex.a:
  ! 	(cd regex; make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    modules/proxy/libproxy.a:
  ! 	(cd modules/proxy; \
  ! 	make CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    clean:
    	rm -f httpd $(OBJS) *pure*