Skip to content
Snippets Groups Projects
Select Git revision
  • c65bbb51c6e98a1956c08faab81941ec558ef0ba
  • openEuler-1.0-LTS default protected
  • openEuler-22.09
  • OLK-5.10
  • openEuler-22.03-LTS-Ascend
  • openEuler-22.03-LTS
  • master
  • openEuler-22.03-LTS-LoongArch-NW
  • openEuler-22.09-HCK
  • openEuler-20.03-LTS-SP3
  • openEuler-21.09
  • openEuler-21.03
  • openEuler-20.09
  • 5.10.0-121.0.0
  • 5.10.0-60.61.0
  • 4.19.90-2210.3.0
  • 5.10.0-60.60.0
  • 5.10.0-120.0.0
  • 5.10.0-60.59.0
  • 5.10.0-119.0.0
  • 4.19.90-2210.2.0
  • 4.19.90-2210.1.0
  • 5.10.0-118.0.0
  • 5.10.0-106.19.0
  • 5.10.0-60.58.0
  • 4.19.90-2209.6.0
  • 5.10.0-106.18.0
  • 5.10.0-106.17.0
  • 5.10.0-106.16.0
  • 5.10.0-106.15.0
  • 5.10.0-117.0.0
  • 5.10.0-60.57.0
  • 5.10.0-116.0.0
33 results

Makefile

Blame
  • Makefile 522 B
    # SPDX-License-Identifier: GPL-2.0
    #
    # Makefile for the linux s390-specific parts of the memory manager.
    #
    
    targets := image
    targets += bzImage
    subdir- := compressed
    
    $(obj)/image: vmlinux FORCE
    	$(call if_changed,objcopy)
    
    $(obj)/bzImage: $(obj)/compressed/vmlinux FORCE
    	$(call if_changed,objcopy)
    
    $(obj)/compressed/vmlinux: FORCE
    	$(Q)$(MAKE) $(build)=$(obj)/compressed $@
    
    install: $(CONFIGURE) $(obj)/bzImage
    	sh -x  $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \
    	      System.map "$(INSTALL_PATH)"