Makefile (470fba7ebe60ad9185056b080b331abad24b4df9) Makefile (349101da8e1f8e5eb1476b02823da80495224485)
1#
2# sparc/Makefile
3#
4# Makefile for the architecture dependent flags and dependencies on the
5# Sparc.
6#
7# Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu)
8#

--- 38 unchanged lines hidden (view full) ---

47
48ifdef CONFIG_KALLSYMS
49kallsyms.o := .tmp_kallsyms2.o
50endif
51
52export INIT_Y CORE_Y DRIVERS_Y NET_Y LIBS_Y HEAD_Y kallsyms.o
53
54# Default target
1#
2# sparc/Makefile
3#
4# Makefile for the architecture dependent flags and dependencies on the
5# Sparc.
6#
7# Copyright (C) 1994 David S. Miller (davem@caip.rutgers.edu)
8#

--- 38 unchanged lines hidden (view full) ---

47
48ifdef CONFIG_KALLSYMS
49kallsyms.o := .tmp_kallsyms2.o
50endif
51
52export INIT_Y CORE_Y DRIVERS_Y NET_Y LIBS_Y HEAD_Y kallsyms.o
53
54# Default target
55all: image
55all: zImage
56
57boot := arch/sparc/boot
58
56
57boot := arch/sparc/boot
58
59image tftpboot.img: vmlinux
59image zImage tftpboot.img: vmlinux
60 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
61
62archclean:
63 $(Q)$(MAKE) $(clean)=$(boot)
64
60 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
61
62archclean:
63 $(Q)$(MAKE) $(clean)=$(boot)
64
65# This is the image used for packaging
66KBUILD_IMAGE := $(boot)/zImage
67
65CLEAN_FILES += arch/$(ARCH)/boot/System.map
66
67# Don't use tabs in echo arguments.
68define archhelp
69 echo '* image - kernel image ($(boot)/image)'
68CLEAN_FILES += arch/$(ARCH)/boot/System.map
69
70# Don't use tabs in echo arguments.
71define archhelp
72 echo '* image - kernel image ($(boot)/image)'
73 echo '* zImage - stripped kernel image ($(boot)/zImage)'
70 echo ' tftpboot.img - image prepared for tftp'
71endef
74 echo ' tftpboot.img - image prepared for tftp'
75endef