fs: compat: Remove warning from COMPATIBLE_IOCTL
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / init / Makefile
CommitLineData
1da177e4
LT
1#
2# Makefile for the linux kernel.
3#
4
c33df4ea 5obj-y := main.o version.o mounts.o
1cac41cb
MB
6obj-$(CONFIG_RKP) += _vmm.o vmm.o ld.o
7obj-$(CONFIG_RKP_CFP_JOPP) += rkp_cfp.o
c33df4ea 8obj-y += noinitramfs.o
c33df4ea 9obj-$(CONFIG_BLK_DEV_INITRD) += initramfs.o
1da177e4 10obj-$(CONFIG_GENERIC_CALIBRATE_DELAY) += calibrate.o
a6359d1e
TG
11ifneq ($(CONFIG_ARCH_INIT_TASK),y)
12obj-y += init_task.o
13endif
1da177e4
LT
14
15mounts-y := do_mounts.o
1da177e4
LT
16mounts-$(CONFIG_BLK_DEV_RAM) += do_mounts_rd.o
17mounts-$(CONFIG_BLK_DEV_INITRD) += do_mounts_initrd.o
18mounts-$(CONFIG_BLK_DEV_MD) += do_mounts_md.o
96b0434c 19mounts-$(CONFIG_BLK_DEV_DM) += do_mounts_dm.o
1da177e4 20
1da177e4 21# dependencies on generated files need to be listed explicitly
92045954 22$(obj)/version.o: include/generated/compile.h
1da177e4 23
3eb3c740
RZ
24# compile.h changes depending on hostname, generation number, etc,
25# so we regenerate it always.
26# mkcompile_h will make sure to only update the
27# actual file if its content has changed.
28
fab1e310 29 chk_compile.h = :
d75f4c68
MF
30 quiet_chk_compile.h = echo ' CHK $@'
31silent_chk_compile.h = :
92045954 32include/generated/compile.h: FORCE
d75f4c68 33 @$($(quiet)chk_compile.h)
3eb3c740 34 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \
a0f97e06 35 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(KBUILD_CFLAGS)"