Makefile (f81483aaeb59da530b286fe5d081e1705eb5c886) | Makefile (129ab0d2d9f38b9d43df35235fc66c6740d6928b) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the linux kernel. 4# 5 6ccflags-y := -fno-function-sections -fno-data-sections 7 8obj-y := main.o version.o mounts.o --- 17 unchanged lines hidden (view full) --- 26# so we regenerate it always. 27# mkcompile_h will make sure to only update the 28# actual file if its content has changed. 29 30quiet_cmd_compile.h = CHK $@ 31 cmd_compile.h = \ 32 $(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ 33 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT_BUILD)" \ | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the linux kernel. 4# 5 6ccflags-y := -fno-function-sections -fno-data-sections 7 8obj-y := main.o version.o mounts.o --- 17 unchanged lines hidden (view full) --- 26# so we regenerate it always. 27# mkcompile_h will make sure to only update the 28# actual file if its content has changed. 29 30quiet_cmd_compile.h = CHK $@ 31 cmd_compile.h = \ 32 $(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \ 33 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT_BUILD)" \ |
34 "$(CONFIG_PREEMPT_RT)" $(CONFIG_CC_VERSION_TEXT) "$(LD)" | 34 "$(CONFIG_PREEMPT_RT)" "$(CONFIG_CC_VERSION_TEXT)" "$(LD)" |
35 36include/generated/compile.h: FORCE 37 $(call cmd,compile.h) | 35 36include/generated/compile.h: FORCE 37 $(call cmd,compile.h) |