Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v2/test/check-bindrule.jam @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 503 bytes
Line 
1# This rule establishes a dependency, with no special build actions
2rule do-nothing ( target : source )
3{
4    DEPENDS $(target) : $(source) ;
5}
6actions quietly do-nothing
7{
8}
9
10# Make a non-file target which depends on a file that exists
11NOTFILE fake-target ;
12SEARCH on file-to-bind = subdir1 ;
13
14do-nothing fake-target
15    : file-to-bind ;
16
17# Set jam up to call our bind-rule
18BINDRULE = bind-rule ;
19
20rule bind-rule ( target : path )
21{
22    ECHO found: $(target) at $(path) ;
23}
24
25DEPENDS all : fake-target ;
Note: See TracBrowser for help on using the repository browser.