You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ben Hyde <bh...@gensym.com> on 1998/06/16 17:49:27 UTC

[PATCH] Makefile.nt install goals without forcing build step

On NT the installr and installd makefile goals
trigger a build, which is good.  

But, the build goal triggers a substantail amount of
recompilation every time.  This it is a pain when
automating a build, install, test process.  Why does it
do such a stupid thing?  I don't know.

So this patch provides a "lightweight" _installr
and _installd goal that skips the build step.

  - ben hyde

> cvs diff -u Makefile.nt
Index: Makefile.nt
===================================================================
RCS file: /cvs/apache-1.3/src/Makefile.nt,v
retrieving revision 1.28
diff -u -r1.28 Makefile.nt
--- Makefile.nt	1998/04/17 14:58:51	1.28
+++ Makefile.nt	1998/06/16 15:34:06
@@ -33,8 +33,10 @@
 
 _apacher: _release _build
 _apached: _debug   _build
-installr: _release _build _install
-installd: _debug   _build _install
+installr: _release _build _installr
+installd: _debug   _build _installd
+_installr: _release _install
+_installd: _debug _install
 _cleanr:  _release _clean
 _cleand:  _debug   _clean