2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/new/build-system.jam
Dave Abrahams f657e923ab *** empty log message ***
[SVN r12197]
2002-01-01 19:15:13 +00:00

17 lines
557 B
Plaintext

# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and
# distribute this software is granted provided this copyright notice appears in
# all copies. This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
# this rule will be used to generate build instructions for the
# given module (Jamfile) once its declarations have been read.
rule construct ( module-name )
{
}
JAMFILE ?= Jamfile ;
modules.load Jamfile : $(JAMFILE) : . ;
construct $(JAMFILE) ;