diff options
author | Masahiro Yamada | 2013-10-17 20:38:52 +0900 |
---|---|---|
committer | Tom Rini | 2013-10-31 13:26:44 -0400 |
commit | 9c3f0bc5eec6a660927e9f3ab5408d6b3e6e43ae (patch) | |
tree | 83c17c24becd6f18982d246bf04e42441fbfbcb0 /drivers/Makefile | |
parent | ac7e73532242ce350764d8aa8dcddcbd47c0fb71 (diff) |
drivers: move some drivers to drivers/Makefile
This commit moves some drivers subdirectory entry
from the toplevel Makefile to drivers/Makefile
using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile new file mode 100644 index 00000000000..9cec2ba6fe9 --- /dev/null +++ b/drivers/Makefile @@ -0,0 +1,15 @@ +obj-y += bios_emulator/ +obj-y += block/ +obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/ +obj-y += crypto/ +obj-y += fpga/ +obj-y += hwmon/ +obj-y += misc/ +obj-y += pcmcia/ +obj-y += dfu/ +obj-y += rtc/ +obj-y += sound/ +obj-y += tpm/ +obj-y += twserial/ +obj-y += video/ +obj-y += watchdog/ |