Makefile (2fe5de9ce7d57498abc14b375cad2fcf8c3ee6cc) | Makefile (3c90c55dcde745bed81f6447f24ba96bda43d984) |
---|---|
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-y += irqchip/ --- 39 unchanged lines hidden (view full) --- 48obj-y += char/ 49 50# gpu/ comes after char for AGP vs DRM startup 51obj-y += gpu/ 52 53obj-$(CONFIG_CONNECTOR) += connector/ 54 55# i810fb and intelfb depend on char/agp/ | 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-y += irqchip/ --- 39 unchanged lines hidden (view full) --- 48obj-y += char/ 49 50# gpu/ comes after char for AGP vs DRM startup 51obj-y += gpu/ 52 53obj-$(CONFIG_CONNECTOR) += connector/ 54 55# i810fb and intelfb depend on char/agp/ |
56obj-$(CONFIG_FB_I810) += video/fbdev/i810/ 57obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/ | 56obj-$(CONFIG_FB_I810) += video/i810/ 57obj-$(CONFIG_FB_INTEL) += video/intelfb/ |
58 59obj-$(CONFIG_PARPORT) += parport/ 60obj-y += base/ block/ misc/ mfd/ nfc/ 61obj-$(CONFIG_NUBUS) += nubus/ 62obj-y += macintosh/ 63obj-$(CONFIG_IDE) += ide/ 64obj-$(CONFIG_SCSI) += scsi/ 65obj-$(CONFIG_ATA) += ata/ --- 48 unchanged lines hidden (view full) --- 114obj-y += mmc/ 115obj-$(CONFIG_MEMSTICK) += memstick/ 116obj-y += leds/ 117obj-$(CONFIG_INFINIBAND) += infiniband/ 118obj-$(CONFIG_SGI_SN) += sn/ 119obj-y += firmware/ 120obj-$(CONFIG_CRYPTO) += crypto/ 121obj-$(CONFIG_SUPERH) += sh/ | 58 59obj-$(CONFIG_PARPORT) += parport/ 60obj-y += base/ block/ misc/ mfd/ nfc/ 61obj-$(CONFIG_NUBUS) += nubus/ 62obj-y += macintosh/ 63obj-$(CONFIG_IDE) += ide/ 64obj-$(CONFIG_SCSI) += scsi/ 65obj-$(CONFIG_ATA) += ata/ --- 48 unchanged lines hidden (view full) --- 114obj-y += mmc/ 115obj-$(CONFIG_MEMSTICK) += memstick/ 116obj-y += leds/ 117obj-$(CONFIG_INFINIBAND) += infiniband/ 118obj-$(CONFIG_SGI_SN) += sn/ 119obj-y += firmware/ 120obj-$(CONFIG_CRYPTO) += crypto/ 121obj-$(CONFIG_SUPERH) += sh/ |
122obj-$(CONFIG_ARCH_SHMOBILE_LEGACY) += sh/ | 122obj-$(CONFIG_ARCH_SHMOBILE) += sh/ |
123ifndef CONFIG_ARCH_USES_GETTIMEOFFSET 124obj-y += clocksource/ 125endif 126obj-$(CONFIG_DCA) += dca/ 127obj-$(CONFIG_HID) += hid/ 128obj-$(CONFIG_PPC_PS3) += ps3/ 129obj-$(CONFIG_OF) += of/ 130obj-$(CONFIG_SSB) += ssb/ --- 29 unchanged lines hidden --- | 123ifndef CONFIG_ARCH_USES_GETTIMEOFFSET 124obj-y += clocksource/ 125endif 126obj-$(CONFIG_DCA) += dca/ 127obj-$(CONFIG_HID) += hid/ 128obj-$(CONFIG_PPC_PS3) += ps3/ 129obj-$(CONFIG_OF) += of/ 130obj-$(CONFIG_SSB) += ssb/ --- 29 unchanged lines hidden --- |