diff options
| author | Sam Ravnborg <sam@mars.ravnborg.org> | 2002-12-30 13:11:46 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-12-30 13:11:46 -0600 |
| commit | 656bbdfde6d3d5f22d4e2fa29a13effdcd8747d2 (patch) | |
| tree | 026756dc7784b2751d435e2ad9939af9972c7c24 /Makefile | |
| parent | 69964a474a397a844e82d0b49e40f8f6d46eaefa (diff) | |
kbuild: Move archhelp to arch/$(ARCH)/Makefile
arch/$(ARCH)/Makefile already contains the kbuild required additions
to allow the kernel to be built for the architecture in question.
Moving archhelp centralise this information, and no longer require a
boot directory to exist to utilise this feature.
Update i386 to define archhelp in arch/$(ARCH)/Makefile
Other architectures will be updated in next cset.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -810,7 +810,8 @@ help: @$(MAKE) --no-print-directory -f Documentation/DocBook/Makefile dochelp @echo '' @echo 'Architecture specific targets ($(ARCH)):' - @$(MAKE) --no-print-directory -f arch/$(ARCH)/boot/Makefile archhelp + @$(if $(archhelp),$(archhelp),\ + echo ' No architecture specific help defined for $(ARCH)') @echo '' @echo 'Execute "make" or "make all" to build all targets marked with [*] ' @echo 'For further info browse Documentation/kbuild/*' |
