1/*
2 * srecord - Manipulate EPROM load files
3 * Copyright (C) 2010 Peter Miller
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or (at
8 * your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19all += test_hyphen/.checked ;
20
21roff_files =
22    [sort
23        [match_mask %0%.man [source_files]]
24        [match_mask %0%.so [source_files]]
25        [match_mask man/%0%.1 [source_files]]
26        [match_mask man/%0%.3 [source_files]]
27        [match_mask man/%0%.5 [source_files]]
28    ]
29    ;
30
31test_hyphen/.checked: [arch]/bin/test_hyphen [roff_files]
32{
33    [resolve [arch]/bin/test_hyphen] [resolve [roff_files]] ;
34}
35