head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	99.11.03.14.47.50;	author luicat;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial revision
@
text
@#
#	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: $
#	   $State: $
#	$Revision: $
#	  $Author: $
#	    $Date: $
#
#

# 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)

@
