aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/eisa/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/eisa/Makefile')
-rw-r--r--drivers/eisa/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/eisa/Makefile b/drivers/eisa/Makefile
new file mode 100644
index 000000000000..70abf93fe6b0
--- /dev/null
+++ b/drivers/eisa/Makefile
@@ -0,0 +1,21 @@
1# Makefile for the Linux device tree
2
3obj-$(CONFIG_EISA) += eisa-bus.o
4obj-${CONFIG_EISA_PCI_EISA} += pci_eisa.o
5
6# virtual_root.o should be the last EISA root device to initialize,
7# so leave it at the end of the list.
8obj-${CONFIG_EISA_VIRTUAL_ROOT} += virtual_root.o
9
10
11# Ugly hack to get DEVICE_NAME_SIZE value...
12DEVICE_NAME_SIZE =$(shell awk '$$1=="\#define" && $$2=="DEVICE_NAME_SIZE" {print $$3-1}' $(srctree)/include/linux/device.h)
13
14$(obj)/eisa-bus.o: $(obj)/devlist.h
15
16quiet_cmd_eisaid = GEN $@
17 cmd_eisaid = sed -e '/^\#/D' -e 's/^\([[:alnum:]]\{7\}\) \+"\([^"]\{1,$(DEVICE_NAME_SIZE)\}\).*"/EISA_DEVINFO ("\1", "\2"),/' $< > $@
18
19clean-files := devlist.h
20$(obj)/devlist.h: $(src)/eisa.ids include/linux/device.h
21 $(call cmd,eisaid)