blob: 06326e30438407ee98c2276387230ad7d10e1a94 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#
3# Makefile for the linux kernel.
4#
5
Nicholas Pigginb67067f2016-08-24 22:29:20 +10006ccflags-y := -fno-function-sections -fno-data-sections
7
Jean-Paul Samanc33df4e2007-02-10 01:44:43 -08008obj-y := main.o version.o mounts.o
9ifneq ($(CONFIG_BLK_DEV_INITRD),y)
10obj-y += noinitramfs.o
11else
12obj-$(CONFIG_BLK_DEV_INITRD) += initramfs.o
13endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070014obj-$(CONFIG_GENERIC_CALIBRATE_DELAY) += calibrate.o
Thomas Gleixnera6359d12012-05-03 09:03:02 +000015
Thomas Gleixnera6359d12012-05-03 09:03:02 +000016obj-y += init_task.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18mounts-y := do_mounts.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070019mounts-$(CONFIG_BLK_DEV_RAM) += do_mounts_rd.o
20mounts-$(CONFIG_BLK_DEV_INITRD) += do_mounts_initrd.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022# dependencies on generated files need to be listed explicitly
Sam Ravnborg92045952009-10-18 00:36:47 +020023$(obj)/version.o: include/generated/compile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Roman Zippel3eb3c742007-01-10 14:45:28 +010025# compile.h changes depending on hostname, generation number, etc,
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
Masahiro Yamada41eba232021-05-17 16:03:12 +090030quiet_cmd_compile.h = CHK $@
31 cmd_compile.h = \
32 $(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \
Valentin Schneidera8b76912021-11-10 20:24:44 +000033 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT_BUILD)" \
Masahiro Yamada129ab0d2021-12-14 11:53:53 +090034 "$(CONFIG_PREEMPT_RT)" "$(CONFIG_CC_VERSION_TEXT)" "$(LD)"
Masahiro Yamada41eba232021-05-17 16:03:12 +090035
36include/generated/compile.h: FORCE
37 $(call cmd,compile.h)