Makefile (5c34202b8bf942da411b6599668a76b07449bbfd) | Makefile (8e3f715a7f004ceb6451cf86101d6e2546eea883) |
---|---|
1# 2# Makefile for the Linux filesystems. 3# 4# 14 Sep 2000, Christoph Hellwig <hch@infradead.org> 5# Rewritten to use lists instead of if-statements. 6# 7 8obj-y := open.o read_write.o file_table.o super.o \ --- 58 unchanged lines hidden (view full) --- 67# Do not add any filesystems before this line 68obj-$(CONFIG_REISERFS_FS) += reiserfs/ 69obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3 70obj-$(CONFIG_EXT4DEV_FS) += ext4/ # Before ext2 so root fs can be ext4dev 71obj-$(CONFIG_JBD) += jbd/ 72obj-$(CONFIG_JBD2) += jbd2/ 73obj-$(CONFIG_EXT2_FS) += ext2/ 74obj-$(CONFIG_CRAMFS) += cramfs/ | 1# 2# Makefile for the Linux filesystems. 3# 4# 14 Sep 2000, Christoph Hellwig <hch@infradead.org> 5# Rewritten to use lists instead of if-statements. 6# 7 8obj-y := open.o read_write.o file_table.o super.o \ --- 58 unchanged lines hidden (view full) --- 67# Do not add any filesystems before this line 68obj-$(CONFIG_REISERFS_FS) += reiserfs/ 69obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3 70obj-$(CONFIG_EXT4DEV_FS) += ext4/ # Before ext2 so root fs can be ext4dev 71obj-$(CONFIG_JBD) += jbd/ 72obj-$(CONFIG_JBD2) += jbd2/ 73obj-$(CONFIG_EXT2_FS) += ext2/ 74obj-$(CONFIG_CRAMFS) += cramfs/ |
75obj-$(CONFIG_RAMFS) += ramfs/ | 75obj-y += ramfs/ |
76obj-$(CONFIG_HUGETLBFS) += hugetlbfs/ 77obj-$(CONFIG_CODA_FS) += coda/ 78obj-$(CONFIG_MINIX_FS) += minix/ 79obj-$(CONFIG_FAT_FS) += fat/ 80obj-$(CONFIG_MSDOS_FS) += msdos/ 81obj-$(CONFIG_VFAT_FS) += vfat/ 82obj-$(CONFIG_BFS_FS) += bfs/ 83obj-$(CONFIG_ISO9660_FS) += isofs/ --- 37 unchanged lines hidden --- | 76obj-$(CONFIG_HUGETLBFS) += hugetlbfs/ 77obj-$(CONFIG_CODA_FS) += coda/ 78obj-$(CONFIG_MINIX_FS) += minix/ 79obj-$(CONFIG_FAT_FS) += fat/ 80obj-$(CONFIG_MSDOS_FS) += msdos/ 81obj-$(CONFIG_VFAT_FS) += vfat/ 82obj-$(CONFIG_BFS_FS) += bfs/ 83obj-$(CONFIG_ISO9660_FS) += isofs/ --- 37 unchanged lines hidden --- |