Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Helge Deller | 2f3c7b8 | 2017-08-20 10:52:22 +0200 | [diff] [blame] | 2 | # |
| 3 | # Makefile for the linux parisc-specific parts of the boot image creator. |
| 4 | # |
| 5 | |
Helge Deller | 2f3c7b8 | 2017-08-20 10:52:22 +0200 | [diff] [blame] | 6 | targets := image |
| 7 | targets += bzImage |
| 8 | subdir- := compressed |
| 9 | |
| 10 | $(obj)/image: vmlinux FORCE |
| 11 | $(call if_changed,objcopy) |
| 12 | |
| 13 | $(obj)/bzImage: $(obj)/compressed/vmlinux FORCE |
| 14 | $(call if_changed,objcopy) |
| 15 | |
| 16 | $(obj)/compressed/vmlinux: FORCE |
| 17 | $(Q)$(MAKE) $(build)=$(obj)/compressed $@ |
| 18 | |
| 19 | install: $(CONFIGURE) $(obj)/bzImage |
| 20 | sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \ |
| 21 | System.map "$(INSTALL_PATH)" |