From: <du...@ma...> - 2009-06-24 04:00:28
|
Author: duane Date: 2009-06-24 04:00:19 +0200 (Wed, 24 Jun 2009) New Revision: 2382 Modified: trunk/src/Makefile.am Log: Add quick target - full cygwin builds take a long long long time, this shortens the edit/build/debug cycle Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2009-06-24 01:54:25 UTC (rev 2381) +++ trunk/src/Makefile.am 2009-06-24 02:00:19 UTC (rev 2382) @@ -90,3 +90,13 @@ endif MAINTAINERCLEANFILES = $(srcdir)/Makefile.in + +# The "quick" target builds executables & reinstalls the executables +# Primary use: developer types to quicken the edit/compile/debug +# cycle. by not requiring a "full build and full install". Note the +# assumption is: You are only rebuilding the EXE.... and everything +# else is/was previously installed. +# +# use at your own risk +quick: all install-binPROGRAMS + |