added "HOST_CPU", "HOST_32BIT", "HOST_64BIT" built-in variables
[k8jam.git] / defaults / build / Jambase.build.lex
blobcd47f69e29e24a2a57b1c1adceae1b8e5d039472
1 # This program is free software: you can redistribute it and/or modify
2 # it under the terms of the GNU General Public License as published by
3 # the Free Software Foundation, version 3 of the License ONLY.
5 # This program is distributed in the hope that it will be useful,
6 # but WITHOUT ANY WARRANTY; without even the implied warranty of
7 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8 # GNU General Public License for more details.
10 # You should have received a copy of the GNU General Public License
11 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
13 # /Lex source.c : source.l ;
15 # Process the lex source file _source.l_ and rename the lex.yy.c
16 # to _source.c_ . Called by the @Object rule
18 rule Lex {
19   ##LexMv $(<) : $(>) ;
20   Depends $(<) : $(>) ;
21   MakeLocate $(<) : $(LOCATE_SOURCE) ;
22   Clean clean : $(<) ;
25 actions Lex {
26   $(LEX) -t $(>) >"$(<)"
29 ##actions LexMv {
30 ##  $(MV) lex.yy.c $(<)
31 ##}