#
# 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
#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 \
		dcache.o inode.o attr.o bad_inode.o

O_OBJS     = super.o devices.o dcache.o inode.o bad_inode.o buffer.o block_dev.o locks.o attr.o namei.o

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