locks: print unsigned ino in /proc/locks
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / init / Makefile
1 #
2 # Makefile for the linux kernel.
3 #
4
5 obj-y := main.o version.o mounts.o
6
7 ifeq ($(CONFIG_TIMA_RKP), y)
8 obj-y += _vmm.o vmm.o
9 obj-y += ld.o
10 endif
11
12 ifneq ($(CONFIG_BLK_DEV_INITRD),y)
13 obj-y += noinitramfs.o
14 else
15 obj-$(CONFIG_BLK_DEV_INITRD) += initramfs.o
16 endif
17 obj-$(CONFIG_GENERIC_CALIBRATE_DELAY) += calibrate.o
18
19 ifneq ($(CONFIG_ARCH_INIT_TASK),y)
20 obj-y += init_task.o
21 endif
22
23 mounts-y := do_mounts.o
24 mounts-$(CONFIG_BLK_DEV_RAM) += do_mounts_rd.o
25 mounts-$(CONFIG_BLK_DEV_INITRD) += do_mounts_initrd.o
26 mounts-$(CONFIG_BLK_DEV_MD) += do_mounts_md.o
27
28 # dependencies on generated files need to be listed explicitly
29 $(obj)/version.o: include/generated/compile.h
30
31 # compile.h changes depending on hostname, generation number, etc,
32 # so we regenerate it always.
33 # mkcompile_h will make sure to only update the
34 # actual file if its content has changed.
35
36 chk_compile.h = :
37 quiet_chk_compile.h = echo ' CHK $@'
38 silent_chk_compile.h = :
39 include/generated/compile.h: FORCE
40 @$($(quiet)chk_compile.h)
41 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkcompile_h $@ \
42 "$(UTS_MACHINE)" "$(CONFIG_SMP)" "$(CONFIG_PREEMPT)" "$(CC) $(KBUILD_CFLAGS)"