#
#	Transparent Cryptographic File System (TCFS) for NetBSD 
#	Author and mantainer: 	Luigi Catuogno [luicat@tcfs.unisa.it]
#	
#	references:		http://tcfs.dia.unisa.it
#				tcfs-bsd@tcfs.unisa.it
#

#
#	Base utility set v0.1
#
#	  $Source: /usr/src/tcfs-utils_0.1/RCS/Makefile,v $
#	   $State: Exp $
#	$Revision: 1.1 $
#	  $Author: luicat $
#	    $Date: 2000/01/14 13:45:56 $
#
#

# RCS_HEADER_ENDS_HERE 



all: utils

library: 
	@(cd lib;make all)

utils: library
	@(cd bin;make all)

clean:
	@(cd lib;make clean)
	@(cd bin;make clean)

install: library
	@(cd bin;make install)
	@(cd lib;make install)

