Update to Automake 1.5
This commit is contained in:
parent
902ee9ccaf
commit
e5fd53e574
17 changed files with 727 additions and 804 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-10-14 Gordon Matzigkeit <gord@fig.org>
|
||||||
|
|
||||||
|
* configure.in: Explicitly call _AM_DEPENDENCIES(CC) for the
|
||||||
|
benefit of older Autoconfs.
|
||||||
|
|
||||||
2001-10-13 Yoshinori K. Okuji <okuji@gnu.org>
|
2001-10-13 Yoshinori K. Okuji <okuji@gnu.org>
|
||||||
|
|
||||||
* netboot/fsys_tftp.c (tftp_read): Move the unused data
|
* netboot/fsys_tftp.c (tftp_read): Move the unused data
|
||||||
|
@ -73,7 +78,7 @@
|
||||||
2001-08-02 Gordon Matzigkeit <gord@fig.org>
|
2001-08-02 Gordon Matzigkeit <gord@fig.org>
|
||||||
|
|
||||||
* stage2/common.c (init_bios_info): Ignore zero-length memory
|
* stage2/common.c (init_bios_info): Ignore zero-length memory
|
||||||
ranges. From Derrik Pates.
|
ranges. From Derrik Pates <dpates@dsdk12.net>.
|
||||||
|
|
||||||
2001-07-26 Jochen Hoenicke <jochen@gnu.org>
|
2001-07-26 Jochen Hoenicke <jochen@gnu.org>
|
||||||
|
|
||||||
|
|
10
INSTALL
10
INSTALL
|
@ -43,11 +43,13 @@ configure script.
|
||||||
Texinfo release. See the webpage
|
Texinfo release. See the webpage
|
||||||
<http://www.gnu.org/software/texinfo/texinfo.html>.
|
<http://www.gnu.org/software/texinfo/texinfo.html>.
|
||||||
|
|
||||||
* GNU Automake 1.4h or later
|
* Developers: GNU Automake 1.4h or later
|
||||||
|
|
||||||
We use the new feature "per-executable flags" in the pretest releases
|
You should not need Automake just to compile GRUB, but you will need
|
||||||
of automake. So you need to obtain a later version from:
|
it if you edit any of the build files (Makefile.am, configure.in,
|
||||||
<ftp://sources.redhat.com/pub/automake/>.
|
etc). We use the new "per-executable flags" feature found in the
|
||||||
|
latest release of automake. See the webpage
|
||||||
|
<http://www.gnu.org/software/automake/automake.html>.
|
||||||
|
|
||||||
|
|
||||||
Configuring the GRUB
|
Configuring the GRUB
|
||||||
|
|
25
Makefile.in
25
Makefile.in
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -65,6 +65,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -74,22 +75,21 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
|
||||||
SUBDIRS = netboot stage2 stage1 lib grub util docs
|
SUBDIRS = netboot stage2 stage1 lib grub util docs
|
||||||
EXTRA_DIST = BUGS
|
EXTRA_DIST = BUGS
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = .
|
subdir = .
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
|
@ -103,8 +103,9 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
|
||||||
uninstall-recursive check-recursive installcheck-recursive
|
uninstall-recursive check-recursive installcheck-recursive
|
||||||
DIST_COMMON = README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
|
DIST_COMMON = README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
|
||||||
Makefile.am Makefile.in NEWS THANKS TODO acconfig.h \
|
Makefile.am Makefile.in NEWS THANKS TODO acconfig.h \
|
||||||
acinclude.m4 aclocal.m4 config.guess config.h.in config.sub \
|
acinclude.m4 aclocal.m4 compile config.guess config.h.in \
|
||||||
configure configure.in depcomp install-sh missing mkinstalldirs
|
config.sub configure configure.in depcomp install-sh missing \
|
||||||
|
mkinstalldirs
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
DIST_SUBDIRS = $(SUBDIRS)
|
||||||
all: config.h
|
all: config.h
|
||||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||||
|
@ -239,10 +240,10 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -312,7 +313,9 @@ distcheck: dist
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||||
&& test `find $$dc_install_base -type f -print | wc -l` -le 1 \
|
&& (test `find $$dc_install_base -type f -print | wc -l` -le 1 \
|
||||||
|
|| (echo "Error: files left after uninstall" 1>&2; \
|
||||||
|
exit 1) ) \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
||||||
&& $(MAKE) $(AM_MAKEFLAGS) distclean \
|
&& $(MAKE) $(AM_MAKEFLAGS) distclean \
|
||||||
&& rm -f $(distdir).tar.gz \
|
&& rm -f $(distdir).tar.gz \
|
||||||
|
@ -392,7 +395,7 @@ uninstall-am: uninstall-info-am
|
||||||
|
|
||||||
uninstall-info: uninstall-info-recursive
|
uninstall-info: uninstall-info-recursive
|
||||||
|
|
||||||
.PHONY: $(RECURSIVE_TARGETS) all all-am check check-am clean \
|
.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
|
||||||
clean-generic clean-recursive dist dist-all distcheck distclean \
|
clean-generic clean-recursive dist dist-all distcheck distclean \
|
||||||
distclean-generic distclean-hdr distclean-recursive \
|
distclean-generic distclean-hdr distclean-recursive \
|
||||||
distclean-tags distdir dvi dvi-am dvi-recursive info info-am \
|
distclean-tags distdir dvi dvi-am dvi-recursive info info-am \
|
||||||
|
|
260
aclocal.m4
vendored
260
aclocal.m4
vendored
|
@ -1,6 +1,6 @@
|
||||||
# aclocal.m4 generated automatically by aclocal 1.4h
|
# aclocal.m4 generated automatically by aclocal 1.5
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
|
# Copyright 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
# This file is free software; the Free Software Foundation
|
# This file is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy and/or distribute it,
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
|
@ -432,6 +432,15 @@ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
|
||||||
ifdef([m4_pattern_allow],
|
ifdef([m4_pattern_allow],
|
||||||
[m4_pattern_allow([^AM_[A-Z]+FLAGS])])dnl
|
[m4_pattern_allow([^AM_[A-Z]+FLAGS])])dnl
|
||||||
|
|
||||||
|
# Autoconf 2.50 always computes EXEEXT. However we need to be
|
||||||
|
# compatible with 2.13, for now. So we always define EXEEXT, but we
|
||||||
|
# don't compute it.
|
||||||
|
AC_SUBST(EXEEXT)
|
||||||
|
# Similar for OBJEXT -- only we only use OBJEXT if the user actually
|
||||||
|
# requests that it be used. This is a bit dumb.
|
||||||
|
: ${OBJEXT=o}
|
||||||
|
AC_SUBST(OBJEXT)
|
||||||
|
|
||||||
# Some tools Automake needs.
|
# Some tools Automake needs.
|
||||||
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
||||||
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
||||||
|
@ -441,7 +450,7 @@ AM_MISSING_PROG(AUTOMAKE, automake)
|
||||||
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
||||||
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
||||||
AM_MISSING_PROG(AMTAR, tar)
|
AM_MISSING_PROG(AMTAR, tar)
|
||||||
AM_MISSING_INSTALL_SH
|
AM_PROG_INSTALL_SH
|
||||||
AM_PROG_INSTALL_STRIP
|
AM_PROG_INSTALL_STRIP
|
||||||
# We need awk for the "check" target. The system "awk" is bad on
|
# We need awk for the "check" target. The system "awk" is bad on
|
||||||
# some platforms.
|
# some platforms.
|
||||||
|
@ -450,13 +459,13 @@ AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
||||||
AC_REQUIRE([AM_DEP_TRACK])dnl
|
AC_REQUIRE([AM_DEP_TRACK])dnl
|
||||||
AC_REQUIRE([AM_SET_DEPDIR])dnl
|
AC_REQUIRE([AM_SET_DEPDIR])dnl
|
||||||
AC_PROVIDE_IFELSE([AC_PROG_][CC],
|
AC_PROVIDE_IFELSE([AC_PROG_][CC],
|
||||||
[AM_DEPENDENCIES(CC)],
|
[_AM_DEPENDENCIES(CC)],
|
||||||
[define([AC_PROG_][CC],
|
[define([AC_PROG_][CC],
|
||||||
defn([AC_PROG_][CC])[AM_DEPENDENCIES(CC)])])dnl
|
defn([AC_PROG_][CC])[_AM_DEPENDENCIES(CC)])])dnl
|
||||||
AC_PROVIDE_IFELSE([AC_PROG_][CXX],
|
AC_PROVIDE_IFELSE([AC_PROG_][CXX],
|
||||||
[AM_DEPENDENCIES(CXX)],
|
[_AM_DEPENDENCIES(CXX)],
|
||||||
[define([AC_PROG_][CXX],
|
[define([AC_PROG_][CXX],
|
||||||
defn([AC_PROG_][CXX])[AM_DEPENDENCIES(CXX)])])dnl
|
defn([AC_PROG_][CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
||||||
])
|
])
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -517,32 +526,13 @@ $1=${$1-"${am_missing_run}$2"}
|
||||||
AC_SUBST($1)])
|
AC_SUBST($1)])
|
||||||
|
|
||||||
|
|
||||||
# AM_MISSING_INSTALL_SH
|
|
||||||
# ---------------------
|
|
||||||
# Like AM_MISSING_PROG, but only looks for install-sh.
|
|
||||||
AC_DEFUN([AM_MISSING_INSTALL_SH],
|
|
||||||
[AC_REQUIRE([AM_MISSING_HAS_RUN])
|
|
||||||
if test -z "$install_sh"; then
|
|
||||||
for install_sh in "$ac_aux_dir/install-sh" \
|
|
||||||
"$ac_aux_dir/install.sh" \
|
|
||||||
"${am_missing_run}${ac_auxdir}/install-sh";
|
|
||||||
do
|
|
||||||
test -f "$install_sh" && break
|
|
||||||
done
|
|
||||||
# FIXME: an evil hack: we remove the SHELL invocation from
|
|
||||||
# install_sh because automake adds it back in. Sigh.
|
|
||||||
install_sh=`echo $install_sh | sed -e 's/\${SHELL}//'`
|
|
||||||
fi
|
|
||||||
AC_SUBST(install_sh)])
|
|
||||||
|
|
||||||
|
|
||||||
# AM_MISSING_HAS_RUN
|
# AM_MISSING_HAS_RUN
|
||||||
# ------------------
|
# ------------------
|
||||||
# Define MISSING if not defined so far and test if it supports --run.
|
# Define MISSING if not defined so far and test if it supports --run.
|
||||||
# If it does, set am_missing_run to use it, otherwise, to nothing.
|
# If it does, set am_missing_run to use it, otherwise, to nothing.
|
||||||
AC_DEFUN([AM_MISSING_HAS_RUN],
|
AC_DEFUN([AM_MISSING_HAS_RUN],
|
||||||
[test x"${MISSING+set}" = xset ||
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
||||||
MISSING="\${SHELL} `CDPATH=:; cd $ac_aux_dir && pwd`/missing"
|
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
||||||
# Use eval to expand $SHELL
|
# Use eval to expand $SHELL
|
||||||
if eval "$MISSING --run true"; then
|
if eval "$MISSING --run true"; then
|
||||||
am_missing_run="$MISSING --run "
|
am_missing_run="$MISSING --run "
|
||||||
|
@ -556,27 +546,56 @@ fi
|
||||||
# AM_AUX_DIR_EXPAND
|
# AM_AUX_DIR_EXPAND
|
||||||
|
|
||||||
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
|
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
|
||||||
# $ac_aux_dir to ${srcdir}/foo. In other projects, it is set to `.'.
|
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
|
||||||
# Of course, Automake must honor this variable whenever it call a tool
|
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
|
||||||
# from the auxiliary directory. The problem is that $srcdir (hence
|
|
||||||
# $ac_aux_dir) can be either an absolute path or a path relative to
|
|
||||||
# $top_srcdir or absolute, this depends on how configure is run. This
|
|
||||||
# is pretty anoying since it makes $ac_aux_dir quite unusable in
|
|
||||||
# subdirectories: on the top source directory, any form will work
|
|
||||||
# fine, but in subdirectories relative pat needs to be adapted.
|
|
||||||
# - calling $top_srcidr/$ac_aux_dir/missing would success if $srcdir is
|
|
||||||
# relative, but fail if $srcdir is absolute
|
|
||||||
# - conversly, calling $ax_aux_dir/missing would fail if $srcdir is
|
|
||||||
# absolute, and success on relative paths.
|
|
||||||
#
|
#
|
||||||
# Consequently, we define and use $am_aux_dir, the "always absolute"
|
# Of course, Automake must honor this variable whenever it calls a
|
||||||
# version of $ac_aux_dir.
|
# tool from the auxiliary directory. The problem is that $srcdir (and
|
||||||
|
# therefore $ac_aux_dir as well) can be either absolute or relative,
|
||||||
|
# depending on how configure is run. This is pretty annoying, since
|
||||||
|
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
|
||||||
|
# source directory, any form will work fine, but in subdirectories a
|
||||||
|
# relative path needs to be adjusted first.
|
||||||
|
#
|
||||||
|
# $ac_aux_dir/missing
|
||||||
|
# fails when called from a subdirectory if $ac_aux_dir is relative
|
||||||
|
# $top_srcdir/$ac_aux_dir/missing
|
||||||
|
# fails if $ac_aux_dir is absolute,
|
||||||
|
# fails when called from a subdirectory in a VPATH build with
|
||||||
|
# a relative $ac_aux_dir
|
||||||
|
#
|
||||||
|
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
|
||||||
|
# are both prefixed by $srcdir. In an in-source build this is usually
|
||||||
|
# harmless because $srcdir is `.', but things will broke when you
|
||||||
|
# start a VPATH build or use an absolute $srcdir.
|
||||||
|
#
|
||||||
|
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
|
||||||
|
# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
|
||||||
|
# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
|
||||||
|
# and then we would define $MISSING as
|
||||||
|
# MISSING="\${SHELL} $am_aux_dir/missing"
|
||||||
|
# This will work as long as MISSING is not called from configure, because
|
||||||
|
# unfortunately $(top_srcdir) has no meaning in configure.
|
||||||
|
# However there are other variables, like CC, which are often used in
|
||||||
|
# configure, and could therefore not use this "fixed" $ac_aux_dir.
|
||||||
|
#
|
||||||
|
# Another solution, used here, is to always expand $ac_aux_dir to an
|
||||||
|
# absolute PATH. The drawback is that using absolute paths prevent a
|
||||||
|
# configured tree to be moved without reconfiguration.
|
||||||
|
|
||||||
AC_DEFUN([AM_AUX_DIR_EXPAND], [
|
AC_DEFUN([AM_AUX_DIR_EXPAND], [
|
||||||
# expand $ac_aux_dir to an absolute path
|
# expand $ac_aux_dir to an absolute path
|
||||||
am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
|
am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
|
||||||
])
|
])
|
||||||
|
|
||||||
|
# AM_PROG_INSTALL_SH
|
||||||
|
# ------------------
|
||||||
|
# Define $install_sh.
|
||||||
|
AC_DEFUN([AM_PROG_INSTALL_SH],
|
||||||
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
||||||
|
install_sh=${install_sh-"$am_aux_dir/install-sh"}
|
||||||
|
AC_SUBST(install_sh)])
|
||||||
|
|
||||||
# One issue with vendor `install' (even GNU) is that you can't
|
# One issue with vendor `install' (even GNU) is that you can't
|
||||||
# specify the program used to strip binaries. This is especially
|
# specify the program used to strip binaries. This is especially
|
||||||
# annoying in cross-compiling environments, where the build's strip
|
# annoying in cross-compiling environments, where the build's strip
|
||||||
|
@ -585,12 +604,13 @@ am_aux_dir=`CDPATH=:; cd $ac_aux_dir && pwd`
|
||||||
# always use install-sh in `make install-strip', and initialize
|
# always use install-sh in `make install-strip', and initialize
|
||||||
# STRIPPROG with the value of the STRIP variable (set by the user).
|
# STRIPPROG with the value of the STRIP variable (set by the user).
|
||||||
AC_DEFUN([AM_PROG_INSTALL_STRIP],
|
AC_DEFUN([AM_PROG_INSTALL_STRIP],
|
||||||
[AC_REQUIRE([AM_MISSING_INSTALL_SH])dnl
|
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
||||||
_am_dirpart="`echo $install_sh | sed -e 's,//*[[^/]]*$,,'`"
|
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
|
||||||
INSTALL_STRIP_PROGRAM="\${SHELL} \`CDPATH=: && cd $_am_dirpart && pwd\`/install-sh -c -s"
|
|
||||||
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
||||||
|
|
||||||
# serial 3
|
# serial 4 -*- Autoconf -*-
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
|
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
|
||||||
# written in clear, in which case automake, when reading aclocal.m4,
|
# written in clear, in which case automake, when reading aclocal.m4,
|
||||||
|
@ -598,36 +618,29 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
||||||
# C support machinery. Also note that it means that autoscan, seeing
|
# C support machinery. Also note that it means that autoscan, seeing
|
||||||
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
|
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
|
||||||
|
|
||||||
# AM_DEPENDENCIES(NAME)
|
|
||||||
|
|
||||||
|
# _AM_DEPENDENCIES(NAME)
|
||||||
# ---------------------
|
# ---------------------
|
||||||
# See how the compiler implements dependency checking.
|
# See how the compiler implements dependency checking.
|
||||||
# NAME is "CC", "CXX" or "OBJC".
|
# NAME is "CC", "CXX" or "OBJC".
|
||||||
# We try a few techniques and use that to set a single cache variable.
|
# We try a few techniques and use that to set a single cache variable.
|
||||||
AC_DEFUN([AM_DEPENDENCIES],
|
#
|
||||||
|
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
|
||||||
|
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
|
||||||
|
# dependency, and given that the user is not expected to run this macro,
|
||||||
|
# just rely on AC_PROG_CC.
|
||||||
|
AC_DEFUN([_AM_DEPENDENCIES],
|
||||||
[AC_REQUIRE([AM_SET_DEPDIR])dnl
|
[AC_REQUIRE([AM_SET_DEPDIR])dnl
|
||||||
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
||||||
am_compiler_list=
|
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
||||||
ifelse([$1], CC,
|
AC_REQUIRE([AM_DEP_TRACK])dnl
|
||||||
[AC_REQUIRE([AC_PROG_][CC])dnl
|
|
||||||
AC_REQUIRE([AC_PROG_][CPP])
|
|
||||||
depcc="$CC"
|
|
||||||
depcpp="$CPP"],
|
|
||||||
[$1], CXX, [AC_REQUIRE([AC_PROG_][CXX])dnl
|
|
||||||
AC_REQUIRE([AC_PROG_][CXXCPP])
|
|
||||||
depcc="$CXX"
|
|
||||||
depcpp="$CXXCPP"],
|
|
||||||
[$1], OBJC, [am_compiler_list='gcc3 gcc'
|
|
||||||
depcc="$OBJC"
|
|
||||||
depcpp=""],
|
|
||||||
[$1], GCJ, [am_compiler_list='gcc3 gcc'
|
|
||||||
depcc="$GCJ"
|
|
||||||
depcpp=""],
|
|
||||||
[AC_REQUIRE([AC_PROG_][$1])dnl
|
|
||||||
depcc="$$1"
|
|
||||||
depcpp=""])
|
|
||||||
|
|
||||||
AC_REQUIRE([AM_MAKE_INCLUDE])
|
ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
|
||||||
AC_REQUIRE([AM_DEP_TRACK])
|
[$1], CXX, [depcc="$CXX" am_compiler_list=],
|
||||||
|
[$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc']
|
||||||
|
[$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
|
||||||
|
[depcc="$$1" am_compiler_list=])
|
||||||
|
|
||||||
AC_CACHE_CHECK([dependency style of $depcc],
|
AC_CACHE_CHECK([dependency style of $depcc],
|
||||||
[am_cv_$1_dependencies_compiler_type],
|
[am_cv_$1_dependencies_compiler_type],
|
||||||
|
@ -637,15 +650,15 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
||||||
# instance it was reported that on HP-UX the gcc test will end up
|
# instance it was reported that on HP-UX the gcc test will end up
|
||||||
# making a dummy file named `D' -- because `-MD' means `put the output
|
# making a dummy file named `D' -- because `-MD' means `put the output
|
||||||
# in D'.
|
# in D'.
|
||||||
mkdir confdir
|
mkdir conftest.dir
|
||||||
# Copy depcomp to subdir because otherwise we won't find it if we're
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
||||||
# using a relative directory.
|
# using a relative directory.
|
||||||
cp "$am_depcomp" confdir
|
cp "$am_depcomp" conftest.dir
|
||||||
cd confdir
|
cd conftest.dir
|
||||||
|
|
||||||
am_cv_$1_dependencies_compiler_type=none
|
am_cv_$1_dependencies_compiler_type=none
|
||||||
if test "$am_compiler_list" = ""; then
|
if test "$am_compiler_list" = ""; then
|
||||||
am_compiler_list="`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`"
|
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
||||||
fi
|
fi
|
||||||
for depmode in $am_compiler_list; do
|
for depmode in $am_compiler_list; do
|
||||||
# We need to recreate these files for each test, as the compiler may
|
# We need to recreate these files for each test, as the compiler may
|
||||||
|
@ -653,8 +666,9 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
||||||
# This happens at least with the AIX C compiler.
|
# This happens at least with the AIX C compiler.
|
||||||
echo '#include "conftest.h"' > conftest.c
|
echo '#include "conftest.h"' > conftest.c
|
||||||
echo 'int i;' > conftest.h
|
echo 'int i;' > conftest.h
|
||||||
|
echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf
|
||||||
|
|
||||||
case "$depmode" in
|
case $depmode in
|
||||||
nosideeffect)
|
nosideeffect)
|
||||||
# after this tag, mechanisms are not by side-effect, so they'll
|
# after this tag, mechanisms are not by side-effect, so they'll
|
||||||
# only be used when explicitly requested
|
# only be used when explicitly requested
|
||||||
|
@ -669,18 +683,19 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
||||||
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
||||||
# mode. It turns out that the SunPro C++ compiler does not properly
|
# mode. It turns out that the SunPro C++ compiler does not properly
|
||||||
# handle `-M -o', and we need to detect this.
|
# handle `-M -o', and we need to detect this.
|
||||||
if depmode="$depmode" \
|
if depmode=$depmode \
|
||||||
source=conftest.c object=conftest.o \
|
source=conftest.c object=conftest.o \
|
||||||
depfile=conftest.Po tmpdepfile=conftest.TPo \
|
depfile=conftest.Po tmpdepfile=conftest.TPo \
|
||||||
$SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&
|
$SHELL ./depcomp $depcc -c conftest.c -o conftest.o >/dev/null 2>&1 &&
|
||||||
grep conftest.h conftest.Po > /dev/null 2>&1; then
|
grep conftest.h conftest.Po > /dev/null 2>&1 &&
|
||||||
am_cv_$1_dependencies_compiler_type="$depmode"
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
||||||
|
am_cv_$1_dependencies_compiler_type=$depmode
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf confdir
|
rm -rf conftest.dir
|
||||||
else
|
else
|
||||||
am_cv_$1_dependencies_compiler_type=none
|
am_cv_$1_dependencies_compiler_type=none
|
||||||
fi
|
fi
|
||||||
|
@ -693,16 +708,17 @@ AC_SUBST([$1DEPMODE])
|
||||||
# AM_SET_DEPDIR
|
# AM_SET_DEPDIR
|
||||||
# -------------
|
# -------------
|
||||||
# Choose a directory name for dependency files.
|
# Choose a directory name for dependency files.
|
||||||
# This macro is AC_REQUIREd in AM_DEPENDENCIES
|
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
|
||||||
AC_DEFUN([AM_SET_DEPDIR],
|
AC_DEFUN([AM_SET_DEPDIR],
|
||||||
[if test -d .deps || mkdir .deps 2> /dev/null || test -d .deps; then
|
[rm -f .deps 2>/dev/null
|
||||||
|
mkdir .deps 2>/dev/null
|
||||||
|
if test -d .deps; then
|
||||||
DEPDIR=.deps
|
DEPDIR=.deps
|
||||||
# We redirect because .deps might already exist and be populated.
|
|
||||||
# In this situation we don't want to see an error.
|
|
||||||
rmdir .deps > /dev/null 2>&1
|
|
||||||
else
|
else
|
||||||
|
# MS-DOS does not allow filenames that begin with a dot.
|
||||||
DEPDIR=_deps
|
DEPDIR=_deps
|
||||||
fi
|
fi
|
||||||
|
rmdir .deps 2>/dev/null
|
||||||
AC_SUBST(DEPDIR)
|
AC_SUBST(DEPDIR)
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@ -785,8 +801,8 @@ doit:
|
||||||
END
|
END
|
||||||
# If we don't find an include directive, just comment out the code.
|
# If we don't find an include directive, just comment out the code.
|
||||||
AC_MSG_CHECKING([for style of include used by $am_make])
|
AC_MSG_CHECKING([for style of include used by $am_make])
|
||||||
_am_include='#'
|
am__include='#'
|
||||||
_am_quote=
|
am__quote=
|
||||||
_am_result=none
|
_am_result=none
|
||||||
# First try GNU make style include.
|
# First try GNU make style include.
|
||||||
echo "include confinc" > confmf
|
echo "include confinc" > confmf
|
||||||
|
@ -796,21 +812,21 @@ echo "include confinc" > confmf
|
||||||
# be invoked under some other name (usually "gmake"), in which
|
# be invoked under some other name (usually "gmake"), in which
|
||||||
# case it prints its new name instead of `make'.
|
# case it prints its new name instead of `make'.
|
||||||
if test "`$am_make -s -f confmf 2> /dev/null | fgrep -v 'ing directory'`" = "done"; then
|
if test "`$am_make -s -f confmf 2> /dev/null | fgrep -v 'ing directory'`" = "done"; then
|
||||||
_am_include=include
|
am__include=include
|
||||||
_am_quote=
|
am__quote=
|
||||||
_am_result=GNU
|
_am_result=GNU
|
||||||
fi
|
fi
|
||||||
# Now try BSD make style include.
|
# Now try BSD make style include.
|
||||||
if test "$_am_include" = "#"; then
|
if test "$am__include" = "#"; then
|
||||||
echo '.include "confinc"' > confmf
|
echo '.include "confinc"' > confmf
|
||||||
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
||||||
_am_include=.include
|
am__include=.include
|
||||||
_am_quote='"'
|
am__quote='"'
|
||||||
_am_result=BSD
|
_am_result=BSD
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
AC_SUBST(_am_include)
|
AC_SUBST(am__include)
|
||||||
AC_SUBST(_am_quote)
|
AC_SUBST(am__quote)
|
||||||
AC_MSG_RESULT($_am_result)
|
AC_MSG_RESULT($_am_result)
|
||||||
rm -f confinc confmf
|
rm -f confinc confmf
|
||||||
])
|
])
|
||||||
|
@ -854,22 +870,60 @@ fi])
|
||||||
AC_PREREQ([2.12])
|
AC_PREREQ([2.12])
|
||||||
|
|
||||||
AC_DEFUN([AM_CONFIG_HEADER],
|
AC_DEFUN([AM_CONFIG_HEADER],
|
||||||
|
[ifdef([AC_FOREACH],dnl
|
||||||
|
[dnl init our file count if it isn't already
|
||||||
|
m4_ifndef([_AM_Config_Header_Index], m4_define([_AM_Config_Header_Index], [0]))
|
||||||
|
dnl prepare to store our destination file list for use in config.status
|
||||||
|
AC_FOREACH([_AM_File], [$1],
|
||||||
|
[m4_pushdef([_AM_Dest], m4_patsubst(_AM_File, [:.*]))
|
||||||
|
m4_define([_AM_Config_Header_Index], m4_incr(_AM_Config_Header_Index))
|
||||||
|
dnl and add it to the list of files AC keeps track of, along
|
||||||
|
dnl with our hook
|
||||||
|
AC_CONFIG_HEADERS(_AM_File,
|
||||||
|
dnl COMMANDS, [, INIT-CMDS]
|
||||||
|
[# update the timestamp
|
||||||
|
echo timestamp >"AS_ESCAPE(_AM_DIRNAME(]_AM_Dest[))/stamp-h]_AM_Config_Header_Index["
|
||||||
|
][$2]m4_ifval([$3], [, [$3]]))dnl AC_CONFIG_HEADERS
|
||||||
|
m4_popdef([_AM_Dest])])],dnl
|
||||||
[AC_CONFIG_HEADER([$1])
|
[AC_CONFIG_HEADER([$1])
|
||||||
AC_OUTPUT_COMMANDS(
|
AC_OUTPUT_COMMANDS(
|
||||||
ifelse(patsubst([$1], [[^ ]], []),
|
ifelse(patsubst([$1], [[^ ]], []),
|
||||||
[],
|
[],
|
||||||
[test -z "$CONFIG_HEADERS" || echo timestamp >dnl
|
[test -z "$CONFIG_HEADERS" || echo timestamp >dnl
|
||||||
patsubst([$1], [^\([^:]*/\)?.*], [\1])stamp-h]),
|
patsubst([$1], [^\([^:]*/\)?.*], [\1])stamp-h]),dnl
|
||||||
[am_indx=1
|
[am_indx=1
|
||||||
for am_file in $1; do
|
for am_file in $1; do
|
||||||
case " $CONFIG_HEADERS " in
|
case " \$CONFIG_HEADERS " in
|
||||||
*" $am_file "*)
|
*" \$am_file "*)
|
||||||
echo timestamp > `echo $am_file | sed 's%:.*%%;s%[^/]*$%%'`stamp-h$am_indx
|
am_dir=\`echo \$am_file |sed 's%:.*%%;s%[^/]*\$%%'\`
|
||||||
;;
|
if test -n "\$am_dir"; then
|
||||||
esac
|
am_tmpdir=\`echo \$am_dir |sed 's%^\(/*\).*\$%\1%'\`
|
||||||
am_indx=\`expr \$am_indx + 1\`
|
for am_subdir in \`echo \$am_dir |sed 's%/% %'\`; do
|
||||||
done])
|
am_tmpdir=\$am_tmpdir\$am_subdir/
|
||||||
])
|
if test ! -d \$am_tmpdir; then
|
||||||
|
mkdir \$am_tmpdir
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
echo timestamp > "\$am_dir"stamp-h\$am_indx
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
am_indx=\`expr \$am_indx + 1\`
|
||||||
|
done])
|
||||||
|
])]) # AM_CONFIG_HEADER
|
||||||
|
|
||||||
|
# _AM_DIRNAME(PATH)
|
||||||
|
# -----------------
|
||||||
|
# Like AS_DIRNAME, only do it during macro expansion
|
||||||
|
AC_DEFUN([_AM_DIRNAME],
|
||||||
|
[m4_if(m4_regexp([$1], [^.*[^/]//*[^/][^/]*/*$]), -1,
|
||||||
|
m4_if(m4_regexp([$1], [^//\([^/]\|$\)]), -1,
|
||||||
|
m4_if(m4_regexp([$1], [^/.*]), -1,
|
||||||
|
[.],
|
||||||
|
m4_patsubst([$1], [^\(/\).*], [\1])),
|
||||||
|
m4_patsubst([$1], [^\(//\)\([^/].*\|$\)], [\1])),
|
||||||
|
m4_patsubst([$1], [^\(.*[^/]\)//*[^/][^/]*/*$], [\1]))[]dnl
|
||||||
|
]) # _AM_DIRNAME
|
||||||
|
|
||||||
# Add --enable-maintainer-mode option to configure.
|
# Add --enable-maintainer-mode option to configure.
|
||||||
# From Jim Meyering
|
# From Jim Meyering
|
||||||
|
|
|
@ -50,6 +50,8 @@ fi
|
||||||
|
|
||||||
AC_CHECK_TOOL(CC, gcc)
|
AC_CHECK_TOOL(CC, gcc)
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
|
# We need this for older versions of Autoconf.
|
||||||
|
_AM_DEPENDENCIES(CC)
|
||||||
|
|
||||||
dnl Because recent automake complains about AS, set it here.
|
dnl Because recent automake complains about AS, set it here.
|
||||||
AS="$CC"
|
AS="$CC"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -63,6 +63,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -72,14 +73,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -106,8 +108,6 @@ EXTRA_DIST = menu.lst $(man_MANS) $(noinst_SCRIPTS) \
|
||||||
$(EXAMPLES) $(multiboot_TEXINFOS)
|
$(EXAMPLES) $(multiboot_TEXINFOS)
|
||||||
|
|
||||||
CLEANFILES = $(noinst_PROGRAMS)
|
CLEANFILES = $(noinst_PROGRAMS)
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = docs
|
subdir = docs
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -147,7 +147,7 @@ TEXINFOS = grub.texi multiboot.texi
|
||||||
NROFF = nroff
|
NROFF = nroff
|
||||||
MANS = $(man_MANS)
|
MANS = $(man_MANS)
|
||||||
DIST_COMMON = $(grub_TEXINFOS) $(multiboot_TEXINFOS) Makefile.am \
|
DIST_COMMON = $(grub_TEXINFOS) $(multiboot_TEXINFOS) Makefile.am \
|
||||||
Makefile.in compile mdate-sh stamp-vti texinfo.tex version.texi
|
Makefile.in mdate-sh stamp-vti texinfo.tex version.texi
|
||||||
SOURCES = $(kernel_SOURCES)
|
SOURCES = $(kernel_SOURCES)
|
||||||
|
|
||||||
all: all-am
|
all: all-am
|
||||||
|
@ -175,7 +175,7 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/kernel-kernel.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/kernel-kernel.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -404,10 +404,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -527,7 +527,7 @@ uninstall-am: uninstall-info-am uninstall-man
|
||||||
|
|
||||||
uninstall-man: uninstall-man1 uninstall-man8
|
uninstall-man: uninstall-man1 uninstall-man8
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic \
|
.PHONY: GTAGS all all-am check check-am clean clean-generic \
|
||||||
clean-noinstPROGRAMS dist-info distclean distclean-compile \
|
clean-noinstPROGRAMS dist-info distclean distclean-compile \
|
||||||
distclean-depend distclean-generic distclean-tags distdir dvi \
|
distclean-depend distclean-generic distclean-tags distdir dvi \
|
||||||
dvi-am info info-am install install-am install-data \
|
dvi-am info info-am install install-am install-data \
|
||||||
|
|
82
docs/compile
82
docs/compile
|
@ -1,82 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
|
|
||||||
# Wrapper for compilers which do not understand `-c -o'.
|
|
||||||
|
|
||||||
# Copyright 1999, 2000 Free Software Foundation, Inc.
|
|
||||||
# Written by Tom Tromey <tromey@cygnus.com>.
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
# Usage:
|
|
||||||
# compile PROGRAM [ARGS]...
|
|
||||||
# `-o FOO.o' is removed from the args passed to the actual compile.
|
|
||||||
|
|
||||||
prog=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
ofile=
|
|
||||||
cfile=
|
|
||||||
args=
|
|
||||||
while test $# -gt 0; do
|
|
||||||
case "$1" in
|
|
||||||
-o)
|
|
||||||
ofile=$2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
*.c)
|
|
||||||
cfile=$1
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
test -z "$ofile" && {
|
|
||||||
echo "compile: no \`-o' option seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
test -z "$cfile" && {
|
|
||||||
echo "compile: no \`.c' file seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Name of file we expect compiler to create.
|
|
||||||
cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
|
||||||
|
|
||||||
# Create the lock directory.
|
|
||||||
lockdir=`echo $ofile | sed -e 's|/|_|g'`
|
|
||||||
while true; do
|
|
||||||
if mkdir $lockdir > /dev/null 2>&1; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
# FIXME: race condition here if user kills between mkdir and trap.
|
|
||||||
trap "rmdir $lockdir; exit 1" 1 2 15
|
|
||||||
|
|
||||||
# Run the compile.
|
|
||||||
"$prog" $args
|
|
||||||
status=$?
|
|
||||||
|
|
||||||
if test -f "$cofile"; then
|
|
||||||
mv "$cofile" "$ofile"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rmdir $lockdir
|
|
||||||
exit $status
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -63,6 +63,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -72,14 +73,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -97,8 +99,6 @@ AM_CFLAGS = $(GRUB_CFLAGS) -DGRUB_UTIL=1 -DFSYS_EXT2FS=1 -DFSYS_FAT=1 \
|
||||||
|
|
||||||
grub_SOURCES = main.c asmstub.c
|
grub_SOURCES = main.c asmstub.c
|
||||||
grub_LDADD = ../stage2/libgrub.a ../lib/libcommon.a $(GRUB_LIBS)
|
grub_LDADD = ../stage2/libgrub.a ../lib/libcommon.a $(GRUB_LIBS)
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = grub
|
subdir = grub
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -142,8 +142,10 @@ install-sbinPROGRAMS: $(sbin_PROGRAMS)
|
||||||
@$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(DESTDIR)$(sbindir)
|
$(mkinstalldirs) $(DESTDIR)$(sbindir)
|
||||||
@list='$(sbin_PROGRAMS)'; for p in $$list; do \
|
@list='$(sbin_PROGRAMS)'; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
|
if test -f $$p \
|
||||||
|
; then \
|
||||||
|
f=`echo $$p1|sed '$(transform);s/$$/$(EXEEXT)/'`; \
|
||||||
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/$$f"; \
|
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/$$f"; \
|
||||||
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/$$f; \
|
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/$$f; \
|
||||||
else :; fi; \
|
else :; fi; \
|
||||||
|
@ -169,8 +171,8 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/asmstub.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asmstub.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/main.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/main.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -216,10 +218,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -309,15 +311,16 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-sbinPROGRAMS
|
uninstall-am: uninstall-info-am uninstall-sbinPROGRAMS
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic clean-sbinPROGRAMS \
|
.PHONY: GTAGS all all-am check check-am clean clean-generic \
|
||||||
distclean distclean-compile distclean-depend distclean-generic \
|
clean-sbinPROGRAMS distclean distclean-compile distclean-depend \
|
||||||
distclean-tags distdir dvi dvi-am info info-am install \
|
distclean-generic distclean-tags distdir dvi dvi-am info \
|
||||||
install-am install-data install-data-am install-exec \
|
info-am install install-am install-data install-data-am \
|
||||||
install-exec-am install-info install-info-am install-man \
|
install-exec install-exec-am install-info install-info-am \
|
||||||
install-sbinPROGRAMS install-strip installcheck installcheck-am \
|
install-man install-sbinPROGRAMS install-strip installcheck \
|
||||||
installdirs maintainer-clean maintainer-clean-generic \
|
installcheck-am installdirs maintainer-clean \
|
||||||
mostlyclean mostlyclean-compile mostlyclean-generic tags \
|
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||||
uninstall uninstall-am uninstall-info-am uninstall-sbinPROGRAMS
|
mostlyclean-generic tags uninstall uninstall-am \
|
||||||
|
uninstall-info-am uninstall-sbinPROGRAMS
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -63,6 +63,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -72,14 +73,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -91,8 +93,6 @@ AM_CFLAGS = $(GRUB_CFLAGS) -I$(top_srcdir)/stage2 \
|
||||||
|
|
||||||
|
|
||||||
libcommon_a_SOURCES = getopt.c getopt1.c getopt.h device.c device.h
|
libcommon_a_SOURCES = getopt.c getopt1.c getopt.h device.c device.h
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = lib
|
subdir = lib
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -149,9 +149,9 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/device.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/device.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/getopt.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/getopt1.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt1.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -197,10 +197,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -289,7 +289,7 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
uninstall-am: uninstall-info-am
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic \
|
.PHONY: GTAGS all all-am check check-am clean clean-generic \
|
||||||
clean-noinstLIBRARIES distclean distclean-compile \
|
clean-noinstLIBRARIES distclean distclean-compile \
|
||||||
distclean-depend distclean-generic distclean-tags distdir dvi \
|
distclean-depend distclean-generic distclean-tags distdir dvi \
|
||||||
dvi-am info info-am install install-am install-data \
|
dvi-am info info-am install install-am install-data \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -65,6 +65,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -74,14 +75,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -162,8 +164,6 @@ smc9000_o_CFLAGS = -DINCLUDE_SMC9000=1
|
||||||
tiara_o_CFLAGS = -DINCLUDE_TIARA=1
|
tiara_o_CFLAGS = -DINCLUDE_TIARA=1
|
||||||
tulip_o_CFLAGS = -DINCLUDE_TULIP=1
|
tulip_o_CFLAGS = -DINCLUDE_TULIP=1
|
||||||
via_rhine_o_CFLAGS = -DINCLUDE_VIA_RHINE=1
|
via_rhine_o_CFLAGS = -DINCLUDE_VIA_RHINE=1
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = netboot
|
subdir = netboot
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -210,7 +210,7 @@ CCLD = $(CC)
|
||||||
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
DIST_SOURCES = $(libdrivers_a_SOURCES) $(EXTRA_libdrivers_a_SOURCES)
|
DIST_SOURCES = $(libdrivers_a_SOURCES) $(EXTRA_libdrivers_a_SOURCES)
|
||||||
DIST_COMMON = Makefile.am Makefile.in compile
|
DIST_COMMON = Makefile.am Makefile.in
|
||||||
SOURCES = $(libdrivers_a_SOURCES) $(EXTRA_libdrivers_a_SOURCES)
|
SOURCES = $(libdrivers_a_SOURCES) $(EXTRA_libdrivers_a_SOURCES)
|
||||||
|
|
||||||
all: all-am
|
all: all-am
|
||||||
|
@ -262,28 +262,28 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-3c509.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-3c509.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-3c595.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-3c595.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-3c90x.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-3c90x.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-config.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-config.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-cs89x0.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-cs89x0.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-depca.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-depca.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-eepro100.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-eepro100.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-epic100.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-epic100.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-fsys_tftp.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-fsys_tftp.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-i82586.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-i82586.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-lance.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-lance.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-main.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-main.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-misc.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-misc.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-ns8390.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-ns8390.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-otulip.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-otulip.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-pci.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-pci.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-rtl8139.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-rtl8139.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-sk_g16.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-sk_g16.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-smc9000.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-smc9000.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-tiara.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-tiara.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-tulip.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-tulip.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libdrivers_a-via-rhine.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libdrivers_a-via-rhine.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -593,10 +593,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -685,7 +685,7 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am
|
uninstall-am: uninstall-info-am
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic \
|
.PHONY: GTAGS all all-am check check-am clean clean-generic \
|
||||||
clean-noinstLIBRARIES distclean distclean-compile \
|
clean-noinstLIBRARIES distclean distclean-compile \
|
||||||
distclean-depend distclean-generic distclean-tags distdir dvi \
|
distclean-depend distclean-generic distclean-tags distdir dvi \
|
||||||
dvi-am info info-am install install-am install-data \
|
dvi-am info info-am install install-am install-data \
|
||||||
|
|
|
@ -1,82 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
|
|
||||||
# Wrapper for compilers which do not understand `-c -o'.
|
|
||||||
|
|
||||||
# Copyright 1999, 2000 Free Software Foundation, Inc.
|
|
||||||
# Written by Tom Tromey <tromey@cygnus.com>.
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
# Usage:
|
|
||||||
# compile PROGRAM [ARGS]...
|
|
||||||
# `-o FOO.o' is removed from the args passed to the actual compile.
|
|
||||||
|
|
||||||
prog=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
ofile=
|
|
||||||
cfile=
|
|
||||||
args=
|
|
||||||
while test $# -gt 0; do
|
|
||||||
case "$1" in
|
|
||||||
-o)
|
|
||||||
ofile=$2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
*.c)
|
|
||||||
cfile=$1
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
test -z "$ofile" && {
|
|
||||||
echo "compile: no \`-o' option seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
test -z "$cfile" && {
|
|
||||||
echo "compile: no \`.c' file seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Name of file we expect compiler to create.
|
|
||||||
cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
|
||||||
|
|
||||||
# Create the lock directory.
|
|
||||||
lockdir=`echo $ofile | sed -e 's|/|_|g'`
|
|
||||||
while true; do
|
|
||||||
if mkdir $lockdir > /dev/null 2>&1; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
# FIXME: race condition here if user kills between mkdir and trap.
|
|
||||||
trap "rmdir $lockdir; exit 1" 1 2 15
|
|
||||||
|
|
||||||
# Run the compile.
|
|
||||||
"$prog" $args
|
|
||||||
status=$?
|
|
||||||
|
|
||||||
if test -f "$cofile"; then
|
|
||||||
mv "$cofile" "$ofile"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rmdir $lockdir
|
|
||||||
exit $status
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -62,6 +62,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -71,14 +72,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -94,13 +96,11 @@ LDFLAGS = -nostdlib -Wl,-N,-Ttext,7C00
|
||||||
|
|
||||||
noinst_PROGRAMS = stage1.exec
|
noinst_PROGRAMS = stage1.exec
|
||||||
stage1_exec_SOURCES = stage1.S stage1.h
|
stage1_exec_SOURCES = stage1.S stage1.h
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = stage1
|
subdir = stage1
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
||||||
noinst_PROGRAMS = stage1.exec
|
noinst_PROGRAMS = stage1.exec$(EXEEXT)
|
||||||
PROGRAMS = $(noinst_PROGRAMS)
|
PROGRAMS = $(noinst_PROGRAMS)
|
||||||
|
|
||||||
am_stage1_exec_OBJECTS = stage1.$(OBJEXT)
|
am_stage1_exec_OBJECTS = stage1.$(OBJEXT)
|
||||||
|
@ -200,10 +200,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -294,7 +294,7 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-nodist_pkgdataDATA
|
uninstall-am: uninstall-info-am uninstall-nodist_pkgdataDATA
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-generic \
|
.PHONY: GTAGS all all-am check check-am clean clean-generic \
|
||||||
clean-noinstPROGRAMS distclean distclean-compile \
|
clean-noinstPROGRAMS distclean distclean-compile \
|
||||||
distclean-generic distclean-tags distdir dvi dvi-am info \
|
distclean-generic distclean-tags distdir dvi dvi-am info \
|
||||||
info-am install install-am install-data install-data-am \
|
info-am install install-am install-data install-data-am \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -64,6 +64,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -73,14 +74,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -270,8 +272,6 @@ nbloader_exec_LDFLAGS = $(NBLOADER_LINK)
|
||||||
pxeloader_exec_SOURCES = pxeloader.S
|
pxeloader_exec_SOURCES = pxeloader.S
|
||||||
pxeloader_exec_ASFLAGS = $(STAGE2_COMPILE)
|
pxeloader_exec_ASFLAGS = $(STAGE2_COMPILE)
|
||||||
pxeloader_exec_LDFLAGS = $(PXELOADER_LINK)
|
pxeloader_exec_LDFLAGS = $(PXELOADER_LINK)
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = stage2
|
subdir = stage2
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -290,18 +290,27 @@ am_libgrub_a_OBJECTS = libgrub_a-boot.$(OBJEXT) \
|
||||||
libgrub_a-fsys_vstafs.$(OBJEXT) libgrub_a-stage2.$(OBJEXT) \
|
libgrub_a-fsys_vstafs.$(OBJEXT) libgrub_a-stage2.$(OBJEXT) \
|
||||||
libgrub_a-md5.$(OBJEXT)
|
libgrub_a-md5.$(OBJEXT)
|
||||||
libgrub_a_OBJECTS = $(am_libgrub_a_OBJECTS)
|
libgrub_a_OBJECTS = $(am_libgrub_a_OBJECTS)
|
||||||
EXTRA_PROGRAMS = nbloader.exec pxeloader.exec diskless.exec
|
EXTRA_PROGRAMS = nbloader.exec$(EXEEXT) pxeloader.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_TRUE@noinst_PROGRAMS = pre_stage2.exec start.exec \
|
diskless.exec$(EXEEXT)
|
||||||
@DISKLESS_SUPPORT_TRUE@ e2fs_stage1_5.exec fat_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@noinst_PROGRAMS = pre_stage2.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_TRUE@ ffs_stage1_5.exec minix_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@ start.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_TRUE@ reiserfs_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@ e2fs_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_TRUE@ vstafs_stage1_5.exec nbloader.exec \
|
@DISKLESS_SUPPORT_TRUE@ fat_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_TRUE@ pxeloader.exec diskless.exec
|
@DISKLESS_SUPPORT_TRUE@ ffs_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_FALSE@noinst_PROGRAMS = pre_stage2.exec start.exec \
|
@DISKLESS_SUPPORT_TRUE@ minix_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_FALSE@ e2fs_stage1_5.exec fat_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@ reiserfs_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_FALSE@ ffs_stage1_5.exec minix_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@ vstafs_stage1_5.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_FALSE@ reiserfs_stage1_5.exec \
|
@DISKLESS_SUPPORT_TRUE@ nbloader.exec$(EXEEXT) \
|
||||||
@DISKLESS_SUPPORT_FALSE@ vstafs_stage1_5.exec
|
@DISKLESS_SUPPORT_TRUE@ pxeloader.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_TRUE@ diskless.exec$(EXEEXT)
|
||||||
|
@DISKLESS_SUPPORT_FALSE@noinst_PROGRAMS = pre_stage2.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ start.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ e2fs_stage1_5.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ fat_stage1_5.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ ffs_stage1_5.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ minix_stage1_5.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ reiserfs_stage1_5.exec$(EXEEXT) \
|
||||||
|
@DISKLESS_SUPPORT_FALSE@ vstafs_stage1_5.exec$(EXEEXT)
|
||||||
PROGRAMS = $(noinst_PROGRAMS)
|
PROGRAMS = $(noinst_PROGRAMS)
|
||||||
|
|
||||||
am_diskless_exec_OBJECTS = diskless_exec-asm.$(OBJEXT) \
|
am_diskless_exec_OBJECTS = diskless_exec-asm.$(OBJEXT) \
|
||||||
|
@ -535,7 +544,7 @@ DATA = $(noinst_DATA) $(pkgdata_DATA)
|
||||||
|
|
||||||
HEADERS = $(noinst_HEADERS)
|
HEADERS = $(noinst_HEADERS)
|
||||||
|
|
||||||
DIST_COMMON = $(noinst_HEADERS) Makefile.am Makefile.in compile
|
DIST_COMMON = $(noinst_HEADERS) Makefile.am Makefile.in
|
||||||
SOURCES = $(libgrub_a_SOURCES) $(diskless_exec_SOURCES) $(e2fs_stage1_5_exec_SOURCES) $(fat_stage1_5_exec_SOURCES) $(ffs_stage1_5_exec_SOURCES) $(minix_stage1_5_exec_SOURCES) $(nbloader_exec_SOURCES) $(pre_stage2_exec_SOURCES) $(pxeloader_exec_SOURCES) $(reiserfs_stage1_5_exec_SOURCES) $(start_exec_SOURCES) $(vstafs_stage1_5_exec_SOURCES)
|
SOURCES = $(libgrub_a_SOURCES) $(diskless_exec_SOURCES) $(e2fs_stage1_5_exec_SOURCES) $(fat_stage1_5_exec_SOURCES) $(ffs_stage1_5_exec_SOURCES) $(minix_stage1_5_exec_SOURCES) $(nbloader_exec_SOURCES) $(pre_stage2_exec_SOURCES) $(pxeloader_exec_SOURCES) $(reiserfs_stage1_5_exec_SOURCES) $(start_exec_SOURCES) $(vstafs_stage1_5_exec_SOURCES)
|
||||||
|
|
||||||
all: $(BUILT_SOURCES)
|
all: $(BUILT_SOURCES)
|
||||||
|
@ -708,95 +717,95 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-boot.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-boot.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-builtins.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-builtins.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-cmdline.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-cmdline.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_ext2fs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_ext2fs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_fat.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_fat.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_ffs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_ffs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_minix.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_minix.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_reiserfs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_reiserfs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-fsys_vstafs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-fsys_vstafs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-gunzip.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-gunzip.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-hercules.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-hercules.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-md5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-md5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-serial.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-serial.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-smp-imps.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-smp-imps.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/diskless_exec-stage2.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/diskless_exec-stage2.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-fsys_ext2fs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-fsys_ext2fs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/e2fs_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/e2fs_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-fsys_fat.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-fsys_fat.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/fat_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fat_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-fsys_ffs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-fsys_ffs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/ffs_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ffs_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-boot.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-boot.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-builtins.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-builtins.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-cmdline.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-cmdline.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_ext2fs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_ext2fs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_fat.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_fat.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_ffs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_ffs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_minix.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_minix.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_reiserfs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_reiserfs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-fsys_vstafs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-fsys_vstafs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-gunzip.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-gunzip.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-md5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-md5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/libgrub_a-stage2.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/libgrub_a-stage2.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-fsys_minix.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-fsys_minix.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/minix_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/minix_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-boot.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-boot.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-builtins.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-builtins.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-cmdline.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-cmdline.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_ext2fs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_ext2fs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_fat.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_fat.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_ffs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_ffs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_minix.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_minix.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_reiserfs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_reiserfs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-fsys_vstafs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-fsys_vstafs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-gunzip.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-gunzip.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-hercules.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-hercules.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-md5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-md5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-serial.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-serial.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-smp-imps.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-smp-imps.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/pre_stage2_exec-stage2.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pre_stage2_exec-stage2.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-fsys_reiserfs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-fsys_reiserfs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/reiserfs_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/reiserfs_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-bios.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-bios.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-char_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-char_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-common.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-common.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-disk_io.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-disk_io.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-fsys_vstafs.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-fsys_vstafs.Po@am__quote@
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/vstafs_stage1_5_exec-stage1_5.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vstafs_stage1_5_exec-stage1_5.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -2035,10 +2044,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
check-TESTS: $(TESTS)
|
check-TESTS: $(TESTS)
|
||||||
@failed=0; all=0; xfail=0; xpass=0; \
|
@failed=0; all=0; xfail=0; xpass=0; \
|
||||||
|
@ -2188,7 +2197,7 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
|
|
||||||
uninstall-am: uninstall-info-am uninstall-pkgdataDATA
|
uninstall-am: uninstall-info-am uninstall-pkgdataDATA
|
||||||
|
|
||||||
.PHONY: all all-am check check-TESTS check-am clean clean-generic \
|
.PHONY: GTAGS all all-am check check-TESTS check-am clean clean-generic \
|
||||||
clean-noinstLIBRARIES clean-noinstPROGRAMS distclean \
|
clean-noinstLIBRARIES clean-noinstPROGRAMS distclean \
|
||||||
distclean-compile distclean-depend distclean-generic \
|
distclean-compile distclean-depend distclean-generic \
|
||||||
distclean-tags distdir dvi dvi-am info info-am install \
|
distclean-tags distdir dvi dvi-am info info-am install \
|
||||||
|
|
|
@ -1,82 +0,0 @@
|
||||||
#! /bin/sh
|
|
||||||
|
|
||||||
# Wrapper for compilers which do not understand `-c -o'.
|
|
||||||
|
|
||||||
# Copyright 1999, 2000 Free Software Foundation, Inc.
|
|
||||||
# Written by Tom Tromey <tromey@cygnus.com>.
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
# Usage:
|
|
||||||
# compile PROGRAM [ARGS]...
|
|
||||||
# `-o FOO.o' is removed from the args passed to the actual compile.
|
|
||||||
|
|
||||||
prog=$1
|
|
||||||
shift
|
|
||||||
|
|
||||||
ofile=
|
|
||||||
cfile=
|
|
||||||
args=
|
|
||||||
while test $# -gt 0; do
|
|
||||||
case "$1" in
|
|
||||||
-o)
|
|
||||||
ofile=$2
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
*.c)
|
|
||||||
cfile=$1
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
args="$args $1"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
test -z "$ofile" && {
|
|
||||||
echo "compile: no \`-o' option seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
test -z "$cfile" && {
|
|
||||||
echo "compile: no \`.c' file seen" 1>&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Name of file we expect compiler to create.
|
|
||||||
cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
|
||||||
|
|
||||||
# Create the lock directory.
|
|
||||||
lockdir=`echo $ofile | sed -e 's|/|_|g'`
|
|
||||||
while true; do
|
|
||||||
if mkdir $lockdir > /dev/null 2>&1; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
# FIXME: race condition here if user kills between mkdir and trap.
|
|
||||||
trap "rmdir $lockdir; exit 1" 1 2 15
|
|
||||||
|
|
||||||
# Run the compile.
|
|
||||||
"$prog" $args
|
|
||||||
status=$?
|
|
||||||
|
|
||||||
if test -f "$cofile"; then
|
|
||||||
mv "$cofile" "$ofile"
|
|
||||||
fi
|
|
||||||
|
|
||||||
rmdir $lockdir
|
|
||||||
exit $status
|
|
|
@ -1,6 +1,9 @@
|
||||||
bin_PROGRAMS = mbchk
|
bin_PROGRAMS = mbchk
|
||||||
sbin_SCRIPTS = grub-install grub-md5-crypt
|
sbin_SCRIPTS = grub-install grub-md5-crypt
|
||||||
noinst_SCRIPTS = grub-image
|
noinst_SCRIPTS = grub-image
|
||||||
|
noinst_DATA = menu.lst
|
||||||
|
|
||||||
|
EXTRA_DIST = $(noinst_DATA)
|
||||||
|
|
||||||
# XXX: Need to search for a header file in docs, because of multiboot.h.
|
# XXX: Need to search for a header file in docs, because of multiboot.h.
|
||||||
AM_CFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/docs
|
AM_CFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/docs
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Makefile.in generated automatically by automake 1.4h from Makefile.am.
|
# Makefile.in generated automatically by automake 1.5 from Makefile.am.
|
||||||
|
|
||||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
|
@ -63,6 +63,7 @@ ASFLAGS = @ASFLAGS@
|
||||||
AWK = @AWK@
|
AWK = @AWK@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
DEPDIR = @DEPDIR@
|
DEPDIR = @DEPDIR@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
FSYS_CFLAGS = @FSYS_CFLAGS@
|
FSYS_CFLAGS = @FSYS_CFLAGS@
|
||||||
GRUB_CFLAGS = @GRUB_CFLAGS@
|
GRUB_CFLAGS = @GRUB_CFLAGS@
|
||||||
GRUB_LIBS = @GRUB_LIBS@
|
GRUB_LIBS = @GRUB_LIBS@
|
||||||
|
@ -72,14 +73,15 @@ NETBOOT_DRIVERS = @NETBOOT_DRIVERS@
|
||||||
NET_CFLAGS = @NET_CFLAGS@
|
NET_CFLAGS = @NET_CFLAGS@
|
||||||
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
NET_EXTRAFLAGS = @NET_EXTRAFLAGS@
|
||||||
OBJCOPY = @OBJCOPY@
|
OBJCOPY = @OBJCOPY@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
STAGE1_CFLAGS = @STAGE1_CFLAGS@
|
||||||
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
STAGE2_CFLAGS = @STAGE2_CFLAGS@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
_am_include = @_am_include@
|
am__include = @am__include@
|
||||||
_am_quote = @_am_quote@
|
am__quote = @am__quote@
|
||||||
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
||||||
host_vendor = @host_vendor@
|
host_vendor = @host_vendor@
|
||||||
install_sh = @install_sh@
|
install_sh = @install_sh@
|
||||||
|
@ -87,14 +89,15 @@ install_sh = @install_sh@
|
||||||
bin_PROGRAMS = mbchk
|
bin_PROGRAMS = mbchk
|
||||||
sbin_SCRIPTS = grub-install grub-md5-crypt
|
sbin_SCRIPTS = grub-install grub-md5-crypt
|
||||||
noinst_SCRIPTS = grub-image
|
noinst_SCRIPTS = grub-image
|
||||||
|
noinst_DATA = menu.lst
|
||||||
|
|
||||||
|
EXTRA_DIST = $(noinst_DATA)
|
||||||
|
|
||||||
# XXX: Need to search for a header file in docs, because of multiboot.h.
|
# XXX: Need to search for a header file in docs, because of multiboot.h.
|
||||||
AM_CFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/docs
|
AM_CFLAGS = -I$(top_srcdir)/lib -I$(top_srcdir)/docs
|
||||||
|
|
||||||
mbchk_SOURCES = mbchk.c
|
mbchk_SOURCES = mbchk.c
|
||||||
mbchk_LDADD = ../lib/libcommon.a
|
mbchk_LDADD = ../lib/libcommon.a
|
||||||
EXEEXT =
|
|
||||||
OBJEXT = o
|
|
||||||
subdir = util
|
subdir = util
|
||||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||||
CONFIG_HEADER = $(top_builddir)/config.h
|
CONFIG_HEADER = $(top_builddir)/config.h
|
||||||
|
@ -122,6 +125,8 @@ CCLD = $(CC)
|
||||||
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
DIST_SOURCES = $(mbchk_SOURCES)
|
DIST_SOURCES = $(mbchk_SOURCES)
|
||||||
|
DATA = $(noinst_DATA)
|
||||||
|
|
||||||
DIST_COMMON = Makefile.am Makefile.in grub-image.in grub-install.in \
|
DIST_COMMON = Makefile.am Makefile.in grub-image.in grub-install.in \
|
||||||
grub-md5-crypt.in
|
grub-md5-crypt.in
|
||||||
SOURCES = $(mbchk_SOURCES)
|
SOURCES = $(mbchk_SOURCES)
|
||||||
|
@ -147,8 +152,10 @@ install-binPROGRAMS: $(bin_PROGRAMS)
|
||||||
@$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
||||||
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
@list='$(bin_PROGRAMS)'; for p in $$list; do \
|
||||||
if test -f $$p; then \
|
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||||||
f=`echo $$p|sed 's/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
|
if test -f $$p \
|
||||||
|
; then \
|
||||||
|
f=`echo $$p1|sed '$(transform);s/$$/$(EXEEXT)/'`; \
|
||||||
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f"; \
|
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f"; \
|
||||||
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f; \
|
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f; \
|
||||||
else :; fi; \
|
else :; fi; \
|
||||||
|
@ -195,7 +202,7 @@ mostlyclean-compile:
|
||||||
distclean-compile:
|
distclean-compile:
|
||||||
-rm -f *.tab.c
|
-rm -f *.tab.c
|
||||||
|
|
||||||
@AMDEP_TRUE@@_am_include@ @_am_quote@$(DEPDIR)/mbchk.Po@_am_quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/mbchk.Po@am__quote@
|
||||||
|
|
||||||
distclean-depend:
|
distclean-depend:
|
||||||
-rm -rf $(DEPDIR)
|
-rm -rf $(DEPDIR)
|
||||||
|
@ -241,10 +248,10 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
||||||
GTAGS:
|
GTAGS:
|
||||||
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
here=`CDPATH=: && cd $(top_builddir) && pwd` \
|
||||||
&& cd $(top_srcdir) \
|
&& cd $(top_srcdir) \
|
||||||
&& gtags -i $$here
|
&& gtags -i $(GTAGS_ARGS) $$here
|
||||||
|
|
||||||
distclean-tags:
|
distclean-tags:
|
||||||
-rm -f TAGS ID
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
|
||||||
|
|
||||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
|
@ -269,7 +276,7 @@ distdir: $(DISTFILES)
|
||||||
done
|
done
|
||||||
check-am: all-am
|
check-am: all-am
|
||||||
check: check-am
|
check: check-am
|
||||||
all-am: Makefile $(PROGRAMS) $(SCRIPTS)
|
all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(DATA)
|
||||||
|
|
||||||
installdirs:
|
installdirs:
|
||||||
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(sbindir)
|
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(sbindir)
|
||||||
|
@ -335,13 +342,13 @@ mostlyclean-am: mostlyclean-compile mostlyclean-generic
|
||||||
uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
|
uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
|
||||||
uninstall-sbinSCRIPTS
|
uninstall-sbinSCRIPTS
|
||||||
|
|
||||||
.PHONY: all all-am check check-am clean clean-binPROGRAMS clean-generic \
|
.PHONY: GTAGS all all-am check check-am clean clean-binPROGRAMS \
|
||||||
distclean distclean-compile distclean-depend distclean-generic \
|
clean-generic distclean distclean-compile distclean-depend \
|
||||||
distclean-tags distdir dvi dvi-am info info-am install \
|
distclean-generic distclean-tags distdir dvi dvi-am info \
|
||||||
install-am install-binPROGRAMS install-data install-data-am \
|
info-am install install-am install-binPROGRAMS install-data \
|
||||||
install-exec install-exec-am install-info install-info-am \
|
install-data-am install-exec install-exec-am install-info \
|
||||||
install-man install-sbinSCRIPTS install-strip installcheck \
|
install-info-am install-man install-sbinSCRIPTS install-strip \
|
||||||
installcheck-am installdirs maintainer-clean \
|
installcheck installcheck-am installdirs maintainer-clean \
|
||||||
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
||||||
mostlyclean-generic tags uninstall uninstall-am \
|
mostlyclean-generic tags uninstall uninstall-am \
|
||||||
uninstall-binPROGRAMS uninstall-info-am uninstall-sbinSCRIPTS
|
uninstall-binPROGRAMS uninstall-info-am uninstall-sbinSCRIPTS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue