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>
This commit is contained in:
Masahiro Yamada
2013-10-17 20:38:52 +09:00
committed by Tom Rini
parent ac7e735322
commit 9c3f0bc5ee
4 changed files with 18 additions and 18 deletions

15
drivers/Makefile Normal file
View File

@@ -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/