Makefile (ff877ea80efa2015b6263766f78ee42c2a1b32f9) | Makefile (7444a72effa632fcd8edc566f880d96fe213c73b) |
---|---|
1# 2# Makefile for the Linux kernel device drivers. 3# 4# 15 Sep 2000, Christoph Hellwig <hch@infradead.org> 5# Rewritten to use lists instead of if-statements. 6# 7 | 1# 2# Makefile for the Linux kernel device drivers. 3# 4# 15 Sep 2000, Christoph Hellwig <hch@infradead.org> 5# Rewritten to use lists instead of if-statements. 6# 7 |
8obj-$(CONFIG_HAVE_GPIO_LIB) += gpio/ | 8obj-y += gpio/ |
9obj-$(CONFIG_PCI) += pci/ 10obj-$(CONFIG_PARISC) += parisc/ 11obj-$(CONFIG_RAPIDIO) += rapidio/ 12obj-y += video/ 13obj-$(CONFIG_ACPI) += acpi/ 14# PnP must come after ACPI since it will eventually need to check if acpi 15# was used and do nothing if so 16obj-$(CONFIG_PNP) += pnp/ --- 83 unchanged lines hidden --- | 9obj-$(CONFIG_PCI) += pci/ 10obj-$(CONFIG_PARISC) += parisc/ 11obj-$(CONFIG_RAPIDIO) += rapidio/ 12obj-y += video/ 13obj-$(CONFIG_ACPI) += acpi/ 14# PnP must come after ACPI since it will eventually need to check if acpi 15# was used and do nothing if so 16obj-$(CONFIG_PNP) += pnp/ --- 83 unchanged lines hidden --- |