diff options
author | Steven Knight <knight@baldmt.com> | 2003-01-20 06:14:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-01-20 06:14:54 (GMT) |
commit | 624493645fb835655b25e92cf5e48f3990829789 (patch) | |
tree | cfd91caee8189c36e039d0bb1182869b72b69e77 /doc | |
parent | a5f3e5e1a386486767bca62126835486e7f722fe (diff) | |
download | SCons-624493645fb835655b25e92cf5e48f3990829789.zip SCons-624493645fb835655b25e92cf5e48f3990829789.tar.gz SCons-624493645fb835655b25e92cf5e48f3990829789.tar.bz2 |
Add AddPreAction() and AddPostAction() methods. (Charles Crain)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 7ad2857..00db84e 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -31,7 +31,7 @@ .RE .fi .. -.TH SCONS 1 "November 2002" +.TH SCONS 1 "February 2003" .SH NAME scons \- a software construction tool .SH SYNOPSIS @@ -2324,6 +2324,32 @@ is usually safe, and is always more efficient than .IR duplicate =1. .TP +.RI AddPostAction ( target, action ) +Arranges for the specified +.I action +to be performed +after the specified +.I target +has been built. +The specified action(s) may be +an Action object, or anything that +can be converted into an Action object +(see below). + +.TP +.RI AddPreAction ( target, action ) +Arranges for the specified +.I action +to be performed +before the specified +.I target +is built. +The specified action(s) may be +an Action object, or anything that +can be converted into an Action object +(see below). + +.TP .RI Clean ( target, files_or_dirs ) This specifies a list of files or directories which should be removed whenever the target is specified with the |