Makefile.asm-generic 1.1 KB
Newer Older
S
Sam Ravnborg 已提交
1 2 3 4 5 6 7
# include/asm-generic contains a lot of files that are used
# verbatim by several architectures.
#
# This Makefile reads the file arch/$(SRCARCH)/include/asm/Kbuild
# and for each file listed in this file with generic-y creates
# a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)

8
kbuild-file := $(srctree)/arch/$(SRCARCH)/include/$(src)/Kbuild
9
-include $(kbuild-file)
S
Sam Ravnborg 已提交
10 11 12 13 14 15

include scripts/Kbuild.include

# Create output directory if not already present
_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))

16 17
# Stale wrappers when the corresponding files are removed from generic-y
# need removing.
18
generated-y   := $(generic-y) $(generated-y)
19 20 21 22
all-files     := $(patsubst %, $(obj)/%, $(generated-y))
old-headers   := $(wildcard $(obj)/*.h)
unwanted      := $(filter-out $(all-files),$(old-headers))

S
Sam Ravnborg 已提交
23 24 25
quiet_cmd_wrap = WRAP    $@
cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@

26 27 28 29 30
quiet_cmd_remove = REMOVE  $(unwanted)
cmd_remove = rm -f $(unwanted)

all: $(patsubst %, $(obj)/%, $(generic-y)) FORCE
	$(if $(unwanted),$(call cmd,remove),)
31
	@:
S
Sam Ravnborg 已提交
32 33 34

$(obj)/%.h:
	$(call cmd,wrap)
35 36 37 38

PHONY += FORCE
.PHONY: $(PHONY)
FORCE: ;