* autogen.sh: Create symlinks to ${GRUB_CONTRIB} if necessary to
avoid confusing Automake. Run autogen only twice, once for the top
level and once for grub-core. Add Makefile.util.def and
Makefile.core.def from extra modules to the appropriate autogen
invocations. If Makefile.common exists in an extra module, include
it in both Makefile.util.am and grub-core/Makefile.core.am;
similarly, include any Makefile.util.common file in Makefile.util.am
and any Makefile.core.common file in grub-core/Makefile.core.am.
* conf/Makefile.common ($(top_srcdir)/grub-core/Makefile.core.am):
Depend on $(top_srcdir)/grub-core/Makefile.gcry.def.
($(top_srcdir)/grub-core/Makefile.gcry.def): Remove.
* grub-core/Makefile.am: Remove inclusion of Makefile.gcry.am.
* gentpl.py (gvar_add): Turn GVARS into a set.
(global_variable_initializers): Sort global variables on output.
(vars_init): New function.
(first_time): Likewise.
(library): Ensure that non-global variable initialisations are
emitted before the first time we emit code for a library block.
Append to variables rather than setting them. Only emit
noinst_LIBRARIES, BUILT_SOURCES, and CLEANFILES the first time for
each conditional path.
(program): installdir() emits an Autogen macro, so must be passed to
var_add rather than gvar_add.
(data): Likewise.
(script): Likewise.
(rules): New function, centralising handling for different target
types. Set up Guile association lists for first_time and vars_init,
and send most output to a diversion so that variable initialisations
can be emitted first.
(module_rules): Use new rules function.
(kernel_rules): Likewise.
(image_rules): Likewise.
(library_rules): Likewise.
(program_rules): Likewise.
(script_rules): Likewise.
(data_rules): Likewise.
* configure.ac: Add AC_PROG_LN_S, for the benefit of ntldr-img.
* .bzrignore: Add contrib and grub-core/contrib. Remove
grub-core/Makefile.gcry.am.
68 lines
1.8 KiB
Bash
Executable File
68 lines
1.8 KiB
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
autogen --version >/dev/null || exit 1
|
|
|
|
echo "Importing unicode..."
|
|
python util/import_unicode.py unicode/UnicodeData.txt unicode/BidiMirroring.txt unicode/ArabicShaping.txt grub-core/unidata.c
|
|
|
|
echo "Importing libgcrypt..."
|
|
python util/import_gcry.py grub-core/lib/libgcrypt/ grub-core
|
|
|
|
echo "Creating Makefile.tpl..."
|
|
python gentpl.py | sed -e '/^$/{N;/^\n$/D;}' > Makefile.tpl
|
|
|
|
echo "Running autogen..."
|
|
|
|
# Automake doesn't like including files from a path outside the project.
|
|
rm -f contrib grub-core/contrib
|
|
if [ "x${GRUB_CONTRIB}" != x ]; then
|
|
[ "${GRUB_CONTRIB}" = contrib ] || ln -s "${GRUB_CONTRIB}" contrib
|
|
[ "${GRUB_CONTRIB}" = grub-core/contrib ] || ln -s ../contrib grub-core/contrib
|
|
fi
|
|
|
|
UTIL_DEFS=Makefile.util.def
|
|
CORE_DEFS='grub-core/Makefile.core.def grub-core/Makefile.gcry.def'
|
|
|
|
for extra in contrib/*/Makefile.util.def; do
|
|
if test -e "$extra"; then
|
|
UTIL_DEFS="$UTIL_DEFS $extra"
|
|
fi
|
|
done
|
|
|
|
for extra in contrib/*/Makefile.core.def; do
|
|
if test -e "$extra"; then
|
|
CORE_DEFS="$CORE_DEFS $extra"
|
|
fi
|
|
done
|
|
|
|
cat $UTIL_DEFS | autogen -T Makefile.tpl | sed -e '/^$/{N;/^\n$/D;}' > Makefile.util.am
|
|
cat $CORE_DEFS | autogen -T Makefile.tpl | sed -e '/^$/{N;/^\n$/D;}' > grub-core/Makefile.core.am
|
|
|
|
for extra in contrib/*/Makefile.common; do
|
|
if test -e "$extra"; then
|
|
echo "include $extra" >> Makefile.util.am
|
|
echo "include $extra" >> grub-core/Makefile.core.am
|
|
fi
|
|
done
|
|
|
|
for extra in contrib/*/Makefile.util.common; do
|
|
if test -e "$extra"; then
|
|
echo "include $extra" >> Makefile.util.am
|
|
fi
|
|
done
|
|
|
|
for extra in contrib/*/Makefile.core.common; do
|
|
if test -e "$extra"; then
|
|
echo "include $extra" >> grub-core/Makefile.core.am
|
|
fi
|
|
done
|
|
|
|
echo "Saving timestamps..."
|
|
echo timestamp > stamp-h.in
|
|
|
|
echo "Running autoreconf..."
|
|
autoreconf -vi
|
|
exit 0
|