#
# T.C.F.S. 2.0 Alpha 1 
#
#      	   This  program  handles  RPC  "NFS"  data  requests
#              adopting a secure transfer protocol.
#                 This   is  an  unsecure   and  unchecked  version,
#              use at your own risk.
#
#              Please, report Bugs to: <tcfs@edu-gw.dia.unisa.it>
#
# Authors:	Giuseppe Cattaneo, <cattaneo@udsab.dia.unisa.it>
#		Giuseppe Persiano, <giuper@udsab.dia.unisa.it>
#		Andrea Cozzolino, <andcoz@edu-gw.dia.unisa.it>
#		Angelo Celentano, <angcel@edu-gw.dia.unisa.it>
#		Aniello Del Sorbo, <anidel@edu-gw.dia.unisa.it>
#		Ermelindo Mauriello, <ermmau@edu-gw.dia.unisa.it>
#		Raffaele Pisapia, <rafpis@edu-gw.dia.unisa.it>
#
#   Permission to  use, copy, and modify  this software  without fee
# is hereby granted, provided that this entire notice is included in
# all copies  of  any  software  which  is  or  includes a  copy  or
# modification of this software and in all copies  of the supporting
# documentation for such software.
#
#   This  software is  distribuited  under  the  GNU General  Public
# License  (version  2, June  1991). Check  the  file  'COPYING'  for
# more  infos. Some  parts of  this  software  derive  from the  NFS
# implementation in the Linux kernel 2.0.x.
#
# This software  maybe be used  for any  purpose provided  the above
# copyright  notice  is retained.  It  is  supplied  as is,  with no
# warranty expressed or implied.
#
#

# -+-_==

#TOPDIR := /usr/src/linux
VERSION = 2
PATCHLEVEL = 0 
SUBLEVEL = 22
ARCH = i386

O_TARGET := tcfs.o
O_OBJS   := proc.o sock.o rpcsock.o inode.o file.o bio.o \
	    tcfsiod.o dir.o symlink.o des.o desitfc.o ioctl.o hash.o uulib.o \
	    desitfc2.o 

M_OBJS   := $(O_TARGET)

include $(TOPDIR)/Rules.make

clean: 
	rm -f $(O_OBJS) $(O_TARGET)
