Makefile (0ea8a56de21be24cb79abb03dee79aabcd60a316) Makefile (2c42bcbb95ec748fc84dc061b431ae4f8ae5551a)
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

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

13#
14# Based on the ia64 and arm64 boot/Makefile.
15#
16
17KCOV_INSTRUMENT := n
18
19OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
20
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

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

13#
14# Based on the ia64 and arm64 boot/Makefile.
15#
16
17KCOV_INSTRUMENT := n
18
19OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
20
21targets := Image loader
21targets := Image Image.* loader loader.o loader.lds loader.bin
22
23$(obj)/Image: vmlinux FORCE
24 $(call if_changed,objcopy)
25
26$(obj)/Image.gz: $(obj)/Image FORCE
27 $(call if_changed,gzip)
28
29$(obj)/loader.o: $(src)/loader.S $(obj)/Image

--- 26 unchanged lines hidden ---
22
23$(obj)/Image: vmlinux FORCE
24 $(call if_changed,objcopy)
25
26$(obj)/Image.gz: $(obj)/Image FORCE
27 $(call if_changed,gzip)
28
29$(obj)/loader.o: $(src)/loader.S $(obj)/Image

--- 26 unchanged lines hidden ---