aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m32r/boot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m32r/boot/Makefile')
-rw-r--r--arch/m32r/boot/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/m32r/boot/Makefile b/arch/m32r/boot/Makefile
new file mode 100644
index 000000000000..af2cef475d98
--- /dev/null
+++ b/arch/m32r/boot/Makefile
@@ -0,0 +1,19 @@
1#
2# arch/m32r/boot/Makefile
3#
4# This file is subject to the terms and conditions of the GNU General Public
5# License. See the file "COPYING" in the main directory of this archive
6# for more details.
7
8targets := zImage
9subdir- := compressed
10
11obj-y := setup.o
12
13$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
14 $(call if_changed,objcopy)
15 @echo 'Kernel: $@ is ready'
16
17$(obj)/compressed/vmlinux: FORCE
18 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
19