]> git.ozlabs.org Git - petitboot/blob - discover/grub2/Makefile.am
utils/hooks: Set linux,stdout-path for primary console
[petitboot] / discover / grub2 / Makefile.am
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 2 of the License.
4 #
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.
9 #
10 #  You should have received a copy of the GNU General Public License
11 #  along with this program; if not, write to the Free Software
12 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
13 #
14
15 noinst_PROGRAMS += discover/grub2/grub2-parser.ro
16
17 discover_grub2_grub2_parser_ro_SOURCES = \
18         discover/grub2/builtins.c \
19         discover/grub2/env.c \
20         discover/grub2/grub2.h \
21         discover/grub2/grub2.c \
22         discover/grub2/grub2-lexer.l \
23         discover/grub2/grub2-parser.y \
24         discover/grub2/script.c
25
26 BUILT_SOURCES += \
27         discover/grub2/grub2-parser.c \
28         discover/grub2/grub2-parser.h \
29         discover/grub2/grub2-lexer.h \
30         discover/grub2/grub2-lexer.c
31
32 CLEANFILES += \
33         discover/grub2/grub2-parser.c \
34         discover/grub2/grub2-parser.h \
35         discover/grub2/grub2-lexer.c \
36         discover/grub2/grub2-lexer.h
37
38 discover_grub2_grub2_parser_ro_CPPFLAGS = \
39         $(AM_CPPFLAGS) \
40         -I$(top_srcdir)/discover/grub2 \
41         -I$(top_builddir)/discover/grub2
42
43 discover_grub2_grub2_parser_ro_LINK = \
44         $(LD) -r -o $@
45
46 # ylwrap doesn't handle flex header files well; use our own rule here.
47 discover/grub2/grub2-lexer.h discover/grub2/grub2-lexer.c: \
48                 $(top_srcdir)/discover/grub2/grub2-lexer.l
49         $(AM_V_LEX)$(LEXCOMPILE) --header-file=discover/grub2/grub2-lexer.h \
50                                        -o discover/grub2/grub2-lexer.c $^
51
52 # We need to loosen our warnings for the generated lexer code.
53 discover/grub2/%grub2-lexer.o discover/grub2/grub2-lexer.o: \
54                 AM_CFLAGS += -Wno-unused-parameter -Wno-missing-prototypes \
55                                -Wno-missing-declarations -Wno-sign-compare
56
57 $(discover_grub2_grub2_parser_ro_OBJECTS): discover/grub2/grub2-parser.h