############################################################################
#
# Root makefile for the LOMAC distribution.  This should build everything.
#  
###########################################################################

.PHONY: lkm utils

all : lkm utils 

lkm :
	cd LKM && make

utils :
	cd Utils && make


#
# Make clean rule, for convenience...
#

clean :
	cd LKM && make clean
	cd Utils && make clean



