Makefile (02ea2104c55b625cf5b5d9ba8586a4fc17920f5c) Makefile (dab291af8d6307a3075c3d67d0cc8f98e646cb94)
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 \

--- 50 unchanged lines hidden (view full) ---

59obj-$(CONFIG_PROFILING) += dcookies.o
60obj-$(CONFIG_DLM) += dlm/
61
62# Do not add any filesystems before this line
63obj-$(CONFIG_REISERFS_FS) += reiserfs/
64obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3
65obj-$(CONFIG_EXT4DEV_FS) += ext4/ # Before ext2 so root fs can be ext4dev
66obj-$(CONFIG_JBD) += jbd/
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 \

--- 50 unchanged lines hidden (view full) ---

59obj-$(CONFIG_PROFILING) += dcookies.o
60obj-$(CONFIG_DLM) += dlm/
61
62# Do not add any filesystems before this line
63obj-$(CONFIG_REISERFS_FS) += reiserfs/
64obj-$(CONFIG_EXT3_FS) += ext3/ # Before ext2 so root fs can be ext3
65obj-$(CONFIG_EXT4DEV_FS) += ext4/ # Before ext2 so root fs can be ext4dev
66obj-$(CONFIG_JBD) += jbd/
67obj-$(CONFIG_JBD2) += jbd2/
67obj-$(CONFIG_EXT2_FS) += ext2/
68obj-$(CONFIG_CRAMFS) += cramfs/
69obj-$(CONFIG_RAMFS) += ramfs/
70obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
71obj-$(CONFIG_CODA_FS) += coda/
72obj-$(CONFIG_MINIX_FS) += minix/
73obj-$(CONFIG_FAT_FS) += fat/
74obj-$(CONFIG_MSDOS_FS) += msdos/

--- 41 unchanged lines hidden ---
68obj-$(CONFIG_EXT2_FS) += ext2/
69obj-$(CONFIG_CRAMFS) += cramfs/
70obj-$(CONFIG_RAMFS) += ramfs/
71obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
72obj-$(CONFIG_CODA_FS) += coda/
73obj-$(CONFIG_MINIX_FS) += minix/
74obj-$(CONFIG_FAT_FS) += fat/
75obj-$(CONFIG_MSDOS_FS) += msdos/

--- 41 unchanged lines hidden ---