2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/src/tools/lex.jam
2021-02-20 21:35:16 -06:00

26 lines
549 B
Plaintext

# Copyright 2003 Vladimir Prus
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
import type ;
import generators ;
import feature ;
import toolset : flags ;
feature.feature flex.prefix : : free ;
type.register LEX : l ;
type.register LEX++ : ll ;
generators.register-standard lex.lex : LEX : C ;
generators.register-standard lex.lex : LEX++ : CPP ;
rule init ( )
{
}
flags lex.lex PREFIX <flex.prefix> ;
actions lex
{
flex -P$(PREFIX) -o$(<) $(>)
}