mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
31 lines
599 B
Plaintext
31 lines
599 B
Plaintext
|
|
import gcc ;
|
|
import property ;
|
|
|
|
rule yfc-compile ( target : sources * : property-set * )
|
|
{
|
|
PROPERTIES on $(target) = [
|
|
property.as-path [ property.remove incidental : $(property-set) ] ] ;
|
|
}
|
|
|
|
actions yfc-compile
|
|
{
|
|
echo $(PROPERTIES) > $(<)
|
|
echo $(>) >> $(<)
|
|
}
|
|
|
|
rule yfc-link ( target : sources * : property-set * )
|
|
{
|
|
PROPERTIES on $(target) = [
|
|
property.as-path [ property.remove incidental : $(property-set) ] ] ;
|
|
}
|
|
|
|
actions yfc-link
|
|
{
|
|
echo $(PROPERTIES) > $(<)
|
|
echo $(>) >> $(<)
|
|
}
|
|
|
|
|
|
IMPORT $(__name__) : yfc-compile yfc-link : : yfc-compile yfc-link ;
|