Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # Makefile for the Linux device tree |
| 2 | |
| 3 | obj-$(CONFIG_EISA) += eisa-bus.o |
| 4 | obj-${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. |
| 8 | obj-${CONFIG_EISA_VIRTUAL_ROOT} += virtual_root.o |
| 9 | |
| 10 | |
| 11 | # Ugly hack to get DEVICE_NAME_SIZE value... |
Kay Sievers | ca52a49 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 12 | DEVICE_NAME_SIZE = 50 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | $(obj)/eisa-bus.o: $(obj)/devlist.h |
| 15 | |
| 16 | quiet_cmd_eisaid = GEN $@ |
| 17 | cmd_eisaid = sed -e '/^\#/D' -e 's/^\([[:alnum:]]\{7\}\) \+"\([^"]\{1,$(DEVICE_NAME_SIZE)\}\).*"/EISA_DEVINFO ("\1", "\2"),/' $< > $@ |
| 18 | |
| 19 | clean-files := devlist.h |
| 20 | $(obj)/devlist.h: $(src)/eisa.ids include/linux/device.h |
| 21 | $(call cmd,eisaid) |