Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/example/make/Jamroot @ 29

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

updated boost from 1_33_1 to 1_34_1

File size: 464 bytes
Line 
1
2import notfile ;
3import common ;
4
5exe main : main.cpp ;
6
7# Create 'main.cpp' from 'main.cpp.pro' using action
8# 'do-something' defined below.
9#
10make main.cpp : main_cpp.pro : @do-something ;
11
12# In this example, we'll just copy a file.
13# Need to find out the name of a command to copy a file.
14CP = [ common.copy-command ] ;
15
16# The action itself.
17# The 'CP' variable is defined below
18# $(>) is source
19# $(<) is target
20actions do-something
21{
22    $(CP) $(>) $(<)
23}
Note: See TracBrowser for help on using the repository browser.