#
# 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 (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.

O_TARGET := fs.o
#L_OBJ    = 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 \
	   dcache.o inode.o attr.o bad_inode.o
O_OBJS    = open.o read_write.o devices.o file_table.o \
	    super.o  stat.o namei.o fcntl.o \
	    ioctl.o readdir.o select.o locks.o filesystems.o \
	    dcache.o inode.o attr.o bad_inode.o stub.o


include $(SMROOT)/Makeconf.$(USER)
