blob: 490122c3e2aaf4e3e7ef8580cfbe9f2033c86644 [file] [log] [blame]
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +02001# include/asm-generic contains a lot of files that are used
2# verbatim by several architectures.
3#
4# This Makefile reads the file arch/$(SRCARCH)/include/asm/Kbuild
5# and for each file listed in this file with generic-y creates
6# a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
7
8kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
Michal Marek7a04fc92011-05-02 18:01:06 +02009-include $(kbuild-file)
Sam Ravnborgd8ecc5c2011-04-27 22:29:49 +020010
11include scripts/Kbuild.include
12
13# Create output directory if not already present
14_dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
15
16quiet_cmd_wrap = WRAP $@
17cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
18
19all: $(patsubst %, $(obj)/%, $(generic-y))
20
21$(obj)/%.h:
22 $(call cmd,wrap)
23