2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-12 12:02:24 +00:00
Files
build/lex.jam
Vladimir Prus 609dd1f6ab Introduced SHARED-LIB and STATIC-LIB target types. Also introduced LIB target
type and a generator, which relays either to SHARED-LIB or STATIC-LIB,
depending of the value of "shared" feature.


[SVN r15529]
2002-09-27 07:35:03 +00:00

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$(<) $(>)
}