diff options
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/fs/Makefile b/fs/Makefile index 9219a138f..0693daf69 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -21,7 +21,7 @@ ALL_SUB_DIRS = coda minix ext2 fat msdos vfat proc isofs nfs umsdos ntfs \ nfsd nls devpts devfs adfs partitions qnx4 udf bfs cramfs \ openpromfs autofs4 ramfs -SUB_DIRS := partitions +SUB_DIRS := ifeq ($(CONFIG_QUOTA),y) O_OBJS += dquot.o @@ -29,6 +29,14 @@ else O_OBJS += noquot.o endif +ifdef CONFIG_PROC_FS +SUB_DIRS += proc +endif + +SUB_DIRS += partitions + +# Do not add any filesystems before this line + ifeq ($(CONFIG_EXT2_FS),y) SUB_DIRS += ext2 else @@ -93,10 +101,6 @@ else endif endif -ifdef CONFIG_PROC_FS -SUB_DIRS += proc -endif - ifeq ($(CONFIG_BFS_FS),y) SUB_DIRS += bfs else |