diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-08-25 09:12:35 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-08-25 09:12:35 +0000 |
commit | c7fc24dc4420057f103afe8fc64524ebc25c5d37 (patch) | |
tree | 3682407a599b8f9f03fc096298134cafba1c9b2f /fs/Makefile | |
parent | 1d793fade8b063fde3cf275bf1a5c2d381292cd9 (diff) |
o Merge with Linux 2.1.116.
o New Newport console code.
o New G364 console code.
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/fs/Makefile b/fs/Makefile index c5973dd39..dce6691e3 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -1,11 +1,11 @@ # -# Makefile for the linux filesystem. +# Makefile for the Linux filesystems. # # Note! Dependencies are done automagically by 'make dep', which also # removes any old dependencies. DON'T put your own dependencies here -# unless it's something special (ie not a .c file). +# unless it's something special (not a .c file). # -# Note 2! The CFLAGS definitions are now in the main makefile... +# Note 2! The CFLAGS definitions are now in the main makefile. L_TARGET := filesystems.a L_OBJS = $(join $(SUB_DIRS),$(SUB_DIRS:%=/%.o)) @@ -13,12 +13,12 @@ O_TARGET := fs.o O_OBJS = open.o read_write.o devices.o file_table.o buffer.o \ super.o block_dev.o stat.o exec.o pipe.o namei.o fcntl.o \ ioctl.o readdir.o select.o fifo.o locks.o filesystems.o \ - inode.o dcache.o attr.o bad_inode.o $(BINFMTS) + dcache.o inode.o attr.o bad_inode.o $(BINFMTS) MOD_LIST_NAME := FS_MODULES ALL_SUB_DIRS = coda minix ext2 fat msdos vfat proc isofs nfs umsdos ntfs \ hpfs sysv smbfs ncpfs ufs affs romfs autofs hfs lockd nfsd \ - nls devpts + nls devpts adfs ifeq ($(CONFIG_QUOTA),y) O_OBJS += dquot.o @@ -26,10 +26,6 @@ else O_OBJS += noquot.o endif -ifeq ($(CONFIG_TRANS_NAMES),y) -O_OBJS += nametrans.o -endif - ifeq ($(CONFIG_CODA_FS),y) SUB_DIRS += coda else |