diff options
author | Sam Ravnborg <sam@mars.(none)> | 2005-07-14 16:28:49 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.(none)> | 2005-07-14 16:28:49 -0400 |
commit | 946dc121d7d1c606f6bbeb8ae778963a1e2ff59c (patch) | |
tree | 293d04695b8c4946b4d2dea0333af79777611dba /Makefile | |
parent | a91f98a284321ffc9eb28ccfbf4329f7aa422f97 (diff) |
kbuild: fix make O=... build
It fixes the following error:
make[1]: *** No rule to make target `include/asm', needed by `arch/alpha/kernel/asm-offsets.s'. Stop.
Reported by:
From: Jan Dittmer <j.dittmer@portrix.net>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -779,7 +779,7 @@ endif | |||
779 | # prepare1 creates a makefile if using a separate output directory | 779 | # prepare1 creates a makefile if using a separate output directory |
780 | prepare1: prepare2 outputmakefile | 780 | prepare1: prepare2 outputmakefile |
781 | 781 | ||
782 | prepare0: prepare1 include/linux/version.h $(objtree)/include/asm \ | 782 | prepare0: prepare1 include/linux/version.h include/asm \ |
783 | include/config/MARKER | 783 | include/config/MARKER |
784 | ifneq ($(KBUILD_MODULES),) | 784 | ifneq ($(KBUILD_MODULES),) |
785 | $(Q)rm -rf $(MODVERDIR) | 785 | $(Q)rm -rf $(MODVERDIR) |
@@ -819,7 +819,7 @@ export CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH) | |||
819 | # hard to detect, but I suppose "make mrproper" is a good idea | 819 | # hard to detect, but I suppose "make mrproper" is a good idea |
820 | # before switching between archs anyway. | 820 | # before switching between archs anyway. |
821 | 821 | ||
822 | $(objtree)/include/asm: | 822 | include/asm: |
823 | @echo ' SYMLINK $@ -> include/asm-$(ARCH)' | 823 | @echo ' SYMLINK $@ -> include/asm-$(ARCH)' |
824 | $(Q)if [ ! -d include ]; then mkdir -p include; fi; | 824 | $(Q)if [ ! -d include ]; then mkdir -p include; fi; |
825 | @ln -fsn asm-$(ARCH) $@ | 825 | @ln -fsn asm-$(ARCH) $@ |