2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Add RmTemps, which is the really quite version of Clean.

[SVN r33474]
This commit is contained in:
Rene Rivera
2006-03-26 06:26:01 +00:00
parent 3af30fce69
commit 9efe599d52

View File

@@ -387,8 +387,9 @@ rule get-program-files-dir ( )
if [ os.name ] = NT
{
RM = del /f ;
RM = del /f /q ;
CP = copy ;
IGNORE = "2>nul >nul & setlocal" ;
}
else
{
@@ -546,6 +547,14 @@ actions copy
$(CP) "$(>)" "$(<)"
}
rule RmTemps
{
}
actions quietly updated piecemeal together RmTemps
{
$(RM) "$(>)" $(IGNORE)
}
rule __test__ ( ) {
import assert ;