chuck 96/10/09 07:51:49
Modified: src Makefile.tmpl
Added: src/modules Makefile
Log:
Add intermediate simple Makefile in src/modules to simplfy module
migration there.
Revision Changes Path
1.29 +3 -3 apache/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
retrieving revision 1.28
retrieving revision 1.29
diff -C3 -r1.28 -r1.29
*** Makefile.tmpl 1996/10/01 21:53:41 1.28
--- Makefile.tmpl 1996/10/09 14:51:21 1.29
***************
*** 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
--- 1,4 ----
! # $Id: Makefile.tmpl,v 1.29 1996/10/09 14:51:21 chuck Exp $
# Apache makefile template (well, suffix).
# This is combined with the information in the "Configuration" file
***************
*** 32,44 ****
(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*
cd regex; make clean
! cd modules/proxy; make clean
dist.tar:
# Assure a semi-sensible configuration going out...
--- 32,44 ----
(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...