]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/nios2/boot/compressed/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / nios2 / boot / compressed / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # create a compressed vmlinux image from the original vmlinux
4 #
5
6 targets := vmlinux head.o misc.o piggy.o vmlinux.lds
7 asflags-y :=
8
9 OBJECTS = $(obj)/head.o $(obj)/misc.o
10
11 LDFLAGS_vmlinux := -T
12
13 $(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS) $(obj)/piggy.o FORCE
14 $(call if_changed,ld)
15
16 LDFLAGS_piggy.o := -r --format binary --oformat elf32-littlenios2 -T
17
18 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/../vmlinux.gz FORCE
19 $(call if_changed,ld)