mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
17 lines
557 B
Plaintext
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) ;
|