diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-09-18 14:16:08 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-09-18 14:16:08 +0000 |
commit | dcdbdfb46e7075515fef5be386e14c42463f7a5e (patch) | |
tree | ca43f548ddcb695d4843fe8a69a55e68ba325ca8 /util/extensions/legacybios/kernel/Makefile | |
parent | 59549598c08d5bdcee01bfb91dd9d147edf9fee7 (diff) | |
download | coreboot-dcdbdfb46e7075515fef5be386e14c42463f7a5e.tar.xz |
first shot of legacybios emulation.
does not work yet.. sorry :-(
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1119 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/extensions/legacybios/kernel/Makefile')
-rw-r--r-- | util/extensions/legacybios/kernel/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/util/extensions/legacybios/kernel/Makefile b/util/extensions/legacybios/kernel/Makefile new file mode 100644 index 0000000000..a03dcd314e --- /dev/null +++ b/util/extensions/legacybios/kernel/Makefile @@ -0,0 +1,22 @@ +# Makefile for the kernel +# +# Copyright (C) 2003 Stefan Reinauer +# +# See the file "COPYING" for further information about +# the copyright and warranty status of this work. +# + +OBJS_KERNEL = lib.o legacybios.o pcibios.o malloc.o x86glue.o +INCLUDES := -I$(TOPDIR)/include -I$(BUILDDIR) -I $(TOPDIR)/arch/$(ARCH)/include -I$(TOPDIR)/arch/x86emu/include + +include $(TOPDIR)/Rules.make + +all: core $(OBJS_KERNEL) + +core: + echo -e "\nBuilding common core files for architecture $(ARCH)" + +# dependencies. these are so small that we write them manually. +lib.o: types.h lib.c +legacybios.o: config.h types.h legacybios.c + |