Skip to content
Snippets Groups Projects
Makefile.am 2.87 KiB
Newer Older
AUTOMAKE_OPTIONS = subdir-objects

SUBDIRS = . grub-core po docs
BVK Chaitanya's avatar
BVK Chaitanya committed
EXTRA_DIST = autogen.sh gentpl.py Makefile.tpl modules.def geninit.sh

include $(top_srcdir)/grub-core/Makefile.vars

CFLAGS_PROGRAM = $(HOST_CFLAGS) $(CFLAGS_GNULIB)
BVK Chaitanya's avatar
BVK Chaitanya committed
LDFLAGS_PROGRAM = $(HOST_LDFLAGS) $(LDFLAGS_GNULIB)
CPPFLAGS_PROGRAM = $(HOST_CPPFLAGS) $(CPPFLAGS_GNULIB)
CCASFLAGS_PROGRAM = $(HOST_CCASFLAGS) $(CCASFLAGS_GNULIB)

CFLAGS_LIBRARY = $(CFLAGS_PROGRAM)
CPPFLAGS_LIBRARY = $(CPPFLAGS_PROGRAM)
CCASFLAGS_LIBRARY = $(CCASFLAGS_PROGRAM)

AM_CFLAGS =
AM_LDFLAGS =
BVK Chaitanya's avatar
BVK Chaitanya committed
AM_CPPFLAGS = $(CPPFLAGS_GRUB)
AM_CCASFLAGS = $(CCASFLAGS_GRUB)
BVK Chaitanya's avatar
BVK Chaitanya committed
include $(srcdir)/modules.am

# XXX Use Automake's LEX & YACC support
BVK Chaitanya's avatar
BVK Chaitanya committed
grub_script.tab.h: $(top_srcdir)/grub-core/script/parser.y
	$(YACC) -d -p grub_script_yy -b grub_script $(top_srcdir)/grub-core/script/parser.y
BVK Chaitanya's avatar
BVK Chaitanya committed
grub_script.tab.c: grub_script.tab.h
CLEANFILES += grub_script.tab.c grub_script.tab.h

# For the lexer.
BVK Chaitanya's avatar
BVK Chaitanya committed
grub_script.yy.h: $(top_srcdir)/grub-core/script/yylex.l
	$(LEX) -o grub_script.yy.c --header-file=grub_script.yy.h $(top_srcdir)/grub-core/script/yylex.l
BVK Chaitanya's avatar
BVK Chaitanya committed
grub_script.yy.c: grub_script.yy.h
CLEANFILES += grub_script.yy.c grub_script.yy.h

BVK Chaitanya's avatar
BVK Chaitanya committed
# For libgrub.a
libgrub.pp: grub_script.tab.h grub_script.yy.h $(libgrub_a_SOURCES)
	$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgrub_a_CPPFLAGS) $(CPPFLAGS) \
BVK Chaitanya's avatar
BVK Chaitanya committed
	  -D'GRUB_MOD_INIT(x)=@MARKER@x@' $^ > $@ || (rm -f $@; exit 1)
BVK Chaitanya's avatar
BVK Chaitanya committed
CLEANFILES += libgrub.pp
BVK Chaitanya's avatar
BVK Chaitanya committed

BVK Chaitanya's avatar
BVK Chaitanya committed
libgrub_a_init.lst: libgrub.pp
BVK Chaitanya's avatar
BVK Chaitanya committed
	cat $< | grep '@MARKER@' | sed 's/@MARKER@\(.*\)@/\1/g' | sort -u > $@ || (rm -f $@; exit 1)
BVK Chaitanya's avatar
BVK Chaitanya committed
CLEANFILES += libgrub_a_init.lst
BVK Chaitanya's avatar
BVK Chaitanya committed
libgrub_a_init.c: libgrub_a_init.lst $(top_srcdir)/geninit.sh
BVK Chaitanya's avatar
BVK Chaitanya committed
	sh $(top_srcdir)/geninit.sh `cat $<` > $@ || (rm -f $@; exit 1)
BVK Chaitanya's avatar
BVK Chaitanya committed
CLEANFILES += libgrub_a_init.c

if COND_GRUB_MKFONT
if COND_HAVE_FONT_SOURCE
pkgdata_DATA = unicode.pf2 ascii.pf2 ascii.h
endif
endif

unicode.pf2: $(FONT_SOURCE) grub-mkfont
	$(builddir)/grub-mkfont -o $@ $(FONT_SOURCE)
CLEANFILES += unicode.pf2

# Arrows and lines are needed to draw the menu, so always include them
UNICODE_ARROWS=0x2190-0x2193
UNICODE_LINES=0x2501-0x251B

ascii.pf2: $(FONT_SOURCE) grub-mkfont
	$(builddir)/grub-mkfont -o $@ $(FONT_SOURCE) -r 0x0-0x7f,$(UNICODE_ARROWS),$(UNICODE_LINES)
CLEANFILES += ascii.pf2

ascii.bitmaps: $(FONT_SOURCE) grub-mkfont
	$(builddir)/grub-mkfont --ascii-bitmaps -o $@ $(FONT_SOURCE)
CLEANFILES += ascii.bitmaps

ascii.h: ascii.bitmaps grub-bin2h
	$(builddir)/grub-bin2h ascii_bitmaps < $< > $@
	cp $@ $(top_builddir)/grub-core/include
CLEANFILES += ascii.h $(top_builddir)/grub-core/include/ascii.h

BVK Chaitanya's avatar
BVK Chaitanya committed
widthspec.bin: $(FONT_SOURCE) grub-mkfont
	$(builddir)/grub-mkfont --width-spec -o $@ $(FONT_SOURCE)
CLEANFILES += widthspec.bin

widthspec.h: widthspec.bin grub-bin2h
	$(builddir)/grub-bin2h widthspec < $< > $@
CLEANFILES += widthspec.h

# XXX: TARGET_CFLAGS += -DUSE_ASCII_FAILBACK=1 -DHAVE_UNIFONT_WIDTHSPEC=1

BVK Chaitanya's avatar
BVK Chaitanya committed
# Install config.h into platformdir
platform_HEADERS = config.h