/usr/share/cook/lex is in cook 2.33-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61  | /*
 * NAME
 *      lex - the lex cookbook
 *
 * DESCRIPTION
 *      This cookbook describes how to work with lex files.
 *
 * RECIPES
 *      %.l: %.c        make C source files from lex source files
 *
 * VARIABLES
 *      lex             The lex command
 *                      Not altered if already defined.
 *      lex_flags       Options to pass to the lex command
 *                      Not altered if already defined.
 *                      The default is empty.
 *      lex_src         lex source files in the current directory.
 *      dot_src         Source files constructable in the current directory
 *                      (unioned with existing setting, if necessary).
 *      dot_obj         Object files constructable in the current directory
 *                      (unioned with existing setting, if necessary).
 *      dot_clean       Files which may be removed from the current directory
 *                      in a clean target.
 *      dot_lint_obj    Lint object files constructable in the current directory
 *                      (unioned with existing setting, if necessary).
 * Copyright (C) 1997-2007 Peter Miller
 */
#pragma once
#include "c"
if [not [defined lex]] then
        lex = lex;
if [not [defined lex_flags]] then
        lex_flags = ;
lex_src = [glob *.l];
dot_src =
        [stringset
                [dot_src] [lex_src]
        -
                [fromto %.l %.c [lex_src]]
                [fromto %.l %.s [lex_src]]
        ];
dot_obj = [stringset [dot_obj] [fromto %.l %.o [lex_src]]];
dot_clean =
        [stringset
                [dot_clean]
                [fromto %.l %.c [lex_src]]
                [fromto %.l %.ln [lex_src]]
                [fromto %.l %.s [lex_src]]
                lex.yy.c
        ];
dot_lint_obj = [stringset [dot_lint_obj] [fromto %.l %.ln [lex_src]]];
%.c: %.l
        single-thread lex.yy.c
{
        [lex] [lex_flags] %.l;
        mv lex.yy.c %.c;
}
 |