# 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.7 2001/04/26 14:13:44 cs Exp $

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

include $(ROOT)Makefile.config

SUBDIRS =	foundation frontends backends uiLib mainFramework uiCmdline doc $(GUI_TYPE)

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
