1# 2# Makefile for the linux parisc-specific parts of the boot image creator. 3# 4 5targets := image 6targets += bzImage 7subdir- := compressed 8 9$(obj)/image: vmlinux FORCE 10 $(call if_changed,objcopy) 11 12$(obj)/bzImage: $(obj)/compressed/vmlinux FORCE 13 $(call if_changed,objcopy) 14 15$(obj)/compressed/vmlinux: FORCE 16 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 17 18install: $(CONFIGURE) $(obj)/bzImage 19 sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \ 20 System.map "$(INSTALL_PATH)" 21