Makefile (c95baf12f5077419db01313ab61c2aac007d40cd) Makefile (37809df4b1c88927fe944eb766e0553811c51f64)
1#
2# arch/riscv/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

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

36 $(call if_changed,lz4)
37
38$(obj)/Image.lzma: $(obj)/Image FORCE
39 $(call if_changed,lzma)
40
41$(obj)/Image.lzo: $(obj)/Image FORCE
42 $(call if_changed,lzo)
43
1#
2# arch/riscv/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

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

36 $(call if_changed,lz4)
37
38$(obj)/Image.lzma: $(obj)/Image FORCE
39 $(call if_changed,lzma)
40
41$(obj)/Image.lzo: $(obj)/Image FORCE
42 $(call if_changed,lzo)
43
44$(obj)/loader.bin: $(obj)/loader FORCE
45 $(call if_changed,objcopy)
46
44install:
45 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
46 $(obj)/Image System.map "$(INSTALL_PATH)"
47
48zinstall:
49 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
50 $(obj)/Image.gz System.map "$(INSTALL_PATH)"
47install:
48 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
49 $(obj)/Image System.map "$(INSTALL_PATH)"
50
51zinstall:
52 $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
53 $(obj)/Image.gz System.map "$(INSTALL_PATH)"