thinkpad-acpi: handle HKEY 0x4010, 0x4011 events
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / scripts / Makefile.asm-generic
blob490122c3e2aaf4e3e7ef8580cfbe9f2033c86644
1 # include/asm-generic contains a lot of files that are used
2 # verbatim by several architectures.
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)
8 kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
9 -include $(kbuild-file)
11 include scripts/Kbuild.include
13 # Create output directory if not already present
14 _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
16 quiet_cmd_wrap = WRAP    $@
17 cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
19 all: $(patsubst %, $(obj)/%, $(generic-y))
21 $(obj)/%.h:
22         $(call cmd,wrap)