Makefile (e700ac213a0f793fb4f83098413303e3dd080892) Makefile (8212f8986d311ccf6a72305e6bdbd814691701d6)
1# SPDX-License-Identifier: GPL-2.0
2KBUILD_DEFCONFIG := mmu_defconfig
3
4UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\"
5
6# What CPU version are we building for, and crack it open
7# as major.minor.rev
8CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER))

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

55
56# Are we making a simpleImage.<boardname> target? If so, crack out the boardname
57DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS)))
58
59export DTB
60
61all: linux.bin
62
1# SPDX-License-Identifier: GPL-2.0
2KBUILD_DEFCONFIG := mmu_defconfig
3
4UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\"
5
6# What CPU version are we building for, and crack it open
7# as major.minor.rev
8CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER))

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

55
56# Are we making a simpleImage.<boardname> target? If so, crack out the boardname
57DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS)))
58
59export DTB
60
61all: linux.bin
62
63archclean:
64 $(Q)$(MAKE) $(clean)=$(boot)
65
66archheaders:
67 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all
68
69PHONY += linux.bin linux.bin.gz linux.bin.ub
70linux.bin.ub linux.bin.gz: linux.bin
71linux.bin: vmlinux
72linux.bin linux.bin.gz linux.bin.ub:
73 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

--- 24 unchanged lines hidden ---
63archheaders:
64 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all
65
66PHONY += linux.bin linux.bin.gz linux.bin.ub
67linux.bin.ub linux.bin.gz: linux.bin
68linux.bin: vmlinux
69linux.bin linux.bin.gz linux.bin.ub:
70 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

--- 24 unchanged lines hidden ---