#
# Makefile for the Linux TCFS filesystem routines.
#
# 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 := tcfs.o
O_OBJS   := inode.o file.o read.o write.o dir.o symlink.o proc.o \
	    nfs2xdr.o
O_OBJS   += tcfs_cipherif.o tcfs_hash.o tcfs_interp.o tcfs_ioctl.o \
            tcfs_main.o tcfs_uulib.o tcfs_library.o tcfs_procfs.o \
	    tcfs_md5.o
OX_OBJS  := tcfs_syms.o

M_OBJS   := $(O_TARGET)

include $(TOPDIR)/Rules.make
