# Name: Makefile
# Project: Sharity
# Author: Christian Starkjohann <cs@obdev.at>
# Creation Date: 1999-04-05
# Tabsize: 4
# Copyright: (c) 1999 by Christian Starkjohann, all rights reserved.
#     For details of the license see the file doc/License.txt.
# This Revision: $Id: Makefile,v 1.3 2001/11/06 09:50:35 cs Exp $

# This is a generic Makefile which simply executes "make" in all
# subdirectories.

SUBDIRS =	nfs2 nfs3

all:
	for i in $(SUBDIRS); do (cd "$$i" && $(MAKE) $@ ROOT="../$(ROOT)") || exit 1; done

clean:
	for i in $(SUBDIRS); do (cd "$$i" && $(MAKE) $@ ROOT="../$(ROOT)") || exit 1; done
