kernel: Add Makefile to kernel build dependencies

This will also include it in the sha1 calculation

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2017-03-13 12:04:55 +00:00
parent 1b31c5582d
commit 7020a2d975

View File

@ -3,12 +3,12 @@ DEBUG ?= 0
all: bzImage push all: bzImage push
ifdef AUFS ifdef AUFS
DEPS=Dockerfile.aufs kernel_config kernel_config.debug kernel_config.aufs patches-4.9 DEPS=Dockerfile.aufs Makefile kernel_config kernel_config.debug kernel_config.aufs patches-4.9
else else
ifdef LTS4.4 ifdef LTS4.4
DEPS=Dockerfile.4.4 kernel_config kernel_config.debug kernel_config.4.4 patches-4.4 DEPS=Dockerfile.4.4 Makefile kernel_config kernel_config.debug kernel_config.4.4 patches-4.4
else else
DEPS=Dockerfile kernel_config kernel_config.debug patches-4.9 DEPS=Dockerfile Makefile kernel_config kernel_config.debug patches-4.9
endif endif
endif endif
kernel.tag: $(DEPS) kernel.tag: $(DEPS)