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 1997/01/07 06:15:12 UTC

cvs commit: apache/src Makefile.tmpl

chuck       97/01/06 21:15:11

  Modified:    src       Makefile.tmpl
  Log:
  Replace hardcoded instances of make with $(MAKE).
  
  Revision  Changes    Path
  1.35      +4 -4      apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -C3 -r1.34 -r1.35
  *** Makefile.tmpl	1996/11/20 19:55:06	1.34
  --- Makefile.tmpl	1997/01/07 05:15:10	1.35
  ***************
  *** 28,43 ****
    	$(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; \
  ! 	make CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    clean:
    	rm -f httpd $(OBJS) *pure*
  ! 	cd regex; make clean
  ! 	cd modules; make clean
    
    dist.tar: 
    	# Assure a semi-sensible configuration going out...
  --- 28,43 ----
    	$(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; \
  ! 	$(MAKE) CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))
    
    clean:
    	rm -f httpd $(OBJS) *pure*
  ! 	cd regex; $(MAKE) clean
  ! 	cd modules; $(MAKE) clean
    
    dist.tar: 
    	# Assure a semi-sensible configuration going out...