diff options
| author | Sam Ravnborg <sam@mars.ravnborg.org> | 2002-12-30 13:14:42 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-12-30 13:14:42 -0600 |
| commit | 95fa3d765419519367d41bd4d3e5198eccb28522 (patch) | |
| tree | 0cfa5928d7feeb45d250dcd499b5ea6ad410c15f | |
| parent | a2374e4ebd161e2a9618af7742638a33e8e94181 (diff) | |
kbuild/sparc64: archhelp and $(build)
Moved archhelp to arch/sparc64/Makefile
introduced usage of $(build)
Removed superflous targets archclean and archmrproper
| -rw-r--r-- | arch/sparc64/Makefile | 12 | ||||
| -rw-r--r-- | arch/sparc64/boot/Makefile | 4 |
2 files changed, 6 insertions, 10 deletions
diff --git a/arch/sparc64/Makefile b/arch/sparc64/Makefile index a0a4985e614b..32ef5188df77 100644 --- a/arch/sparc64/Makefile +++ b/arch/sparc64/Makefile @@ -71,11 +71,11 @@ libs-y += arch/sparc64/prom/ arch/sparc64/lib/ # FIXME: is drivers- right? drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/ -makeboot =$(Q)$(MAKE) -f scripts/Makefile.build obj=arch/sparc64/boot $(1) - tftpboot.img vmlinux.aout: - $(call makeboot,arch/sparc64/boot/$@) - -archmrproper: -archclean: + $(Q)$(MAKE) $(build)=arch/sparc64/boot arch/sparc64/boot/$@ +define archhelp + echo '* vmlinux - Standard sparc64 kernel' + echo ' vmlinux.aout - a.out kernel for sparc64' + echo ' tftpboot.img - Image prepared for tftp' +endef diff --git a/arch/sparc64/boot/Makefile b/arch/sparc64/boot/Makefile index 6a4a74781edc..51dcc7d12ab0 100644 --- a/arch/sparc64/boot/Makefile +++ b/arch/sparc64/boot/Makefile @@ -24,7 +24,3 @@ $(obj)/vmlinux.aout: vmlinux FORCE $(call if_changed,elftoaout) @echo ' kernel: $@ is ready' -archhelp: - @echo '* vmlinux - Standard sparc64 kernel' - @echo ' vmlinux.aout - a.out kernel for sparc64' - @echo ' tftpboot.img - Image prepared for tftp' |
