diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
commit | 27cfca1ec98e91261b1a5355d10a8996464b63af (patch) | |
tree | 8e895a53e372fa682b4c0a585b9377d67ed70d0e /arch/alpha/Makefile | |
parent | 6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff) |
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too
o Upgrade to 2.1.89.
Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'arch/alpha/Makefile')
-rw-r--r-- | arch/alpha/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/alpha/Makefile b/arch/alpha/Makefile index c12783c92..9cd1ab3e6 100644 --- a/arch/alpha/Makefile +++ b/arch/alpha/Makefile @@ -18,8 +18,12 @@ HEAD := arch/alpha/kernel/head.o SUBDIRS := $(SUBDIRS) arch/alpha/kernel arch/alpha/mm arch/alpha/lib \ arch/alpha/math-emu CORE_FILES := arch/alpha/kernel/kernel.o arch/alpha/mm/mm.o $(CORE_FILES) -LIBS := $(TOPDIR)/arch/alpha/math-emu/math-emu.a \ - $(TOPDIR)/arch/alpha/lib/lib.a $(LIBS) $(TOPDIR)/arch/alpha/lib/lib.a + +ifeq ($(CONFIG_MATHEMU),y) + CORE_FILES := $(CORE_FILES) arch/alpha/math-emu/math-emu.o +endif + +LIBS := arch/alpha/lib/lib.a $(LIBS) arch/alpha/lib/lib.a MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot @@ -44,3 +48,6 @@ archclean: archdep: @$(MAKEBOOT) dep + +bootpfile: + @$(MAKEBOOT) bootpfile |