mirror of
https://github.com/boostorg/build.git
synced 2026-02-12 12:02:24 +00:00
type and a generator, which relays either to SHARED-LIB or STATIC-LIB, depending of the value of "shared" feature. [SVN r15529]
16 lines
200 B
Plaintext
16 lines
200 B
Plaintext
|
|
import type ;
|
|
import generators ;
|
|
|
|
type.register LEX : l ;
|
|
|
|
generators.register-standard lex.lex : LEX : C ;
|
|
|
|
rule lex ( target : source : properties * )
|
|
{
|
|
}
|
|
|
|
actions lex
|
|
{
|
|
flex -o$(<) $(>)
|
|
} |