rse 99/01/02 04:45:16
Modified: src CHANGES
. Makefile.tmpl
Log:
Make top-level Makefile aware of a parallel build procedures (make -j) by
making sure the src/support/ tools are _forced_ to be build last (they depend
on other libraries).
Submitted by: Markus Theissinger <[EMAIL PROTECTED]>
Reviewed by: Ralf S. Engelschall
Revision Changes Path
1.1191 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1190
retrieving revision 1.1191
diff -u -r1.1190 -r1.1191
--- CHANGES 1999/01/01 22:32:15 1.1190
+++ CHANGES 1999/01/02 12:45:10 1.1191
@@ -1,5 +1,9 @@
Changes with Apache 1.3.4
+ *) Make top-level Makefile aware of a parallel build procedures (make -j)
by
+ making sure the src/support/ tools are _forced_ to be build last (they
+ depend on other libraries). [Markus Theissinger <[EMAIL PROTECTED]>]
+
*) Fix installation procedure: Now that os-inline.c is actually used (a
recently fixed bug prevented this) we need to also install os-include.c
in addition to os.h into the PREFIX/include/ location or building of
1.61 +2 -1 apache-1.3/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /home/cvs/apache-1.3/Makefile.tmpl,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- Makefile.tmpl 1999/01/01 21:30:19 1.60
+++ Makefile.tmpl 1999/01/02 12:45:14 1.61
@@ -152,7 +152,8 @@
# build the package
build:
@echo "===> $(SRC)"
- @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) build-std $(build-support)
+ @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) build-std
+ @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) $(build-support)
@touch $(TOP)/$(SRC)/.apaci.build.ok
@echo "<=== $(SRC)"