#
# Copyright (C) 2001-2002 by egnite Software GmbH. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this
#    software must display the following acknowledgement:
#
#    This product includes software developed by egnite Software GmbH
#    and its contributors.
#
# THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
# SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# For additional information see http://www.ethernut.de/
#
# $Log: Makefile,v $
# Revision 1.1.1.1  2003/05/09 14:40:23  haraldkipp
# Initial using 3.2.1
#
# Revision 1.13  2003/03/31 14:52:54  harald
# Prepare release 3.1
#
# Revision 1.12  2003/01/14 13:22:44  harald
# Shell no more required
#
# Revision 1.11  2002/11/02 14:26:39  harald
# Application dirs explicitly specified
#
# Revision 1.10  2002/10/31 16:20:40  harald
# Mods by troth for Linux
#
# Revision 1.9  2002/06/26 17:28:58  harald
# First pre-release with 2.4 stack
#
# Revision 1.8  2002/05/08 16:02:25  harald
# First Imagecraft compilation
#
# Revision 1.7  2002/04/20 12:51:45  harald
# Separate application build
#
# Revision 1.6  2001/09/01 18:16:36  harald
# Added new samples
#
# Revision 1.5  2001/06/28 18:30:48  harald
# Preview release
#
# Revision 1.4  2001/06/09 16:38:38  harald
# Refined
#
# Revision 1.3  2001/06/09 10:33:08  harald
# Restructured
#
# Revision 1.2  2001/05/27 20:11:34  harald
# New device structure implemented
#
# Revision 1.1  2001/05/19 12:31:29  harald
# First check in
#
#

top_srcdir = .

include UserConf.mk

all:
	$(MAKE) -C os
	$(MAKE) -C fs
	$(MAKE) -C dev
	$(MAKE) -C net
	$(MAKE) -C pro
	$(MAKE) -C crt

install:
	$(MAKE) -C os install
	$(MAKE) -C fs install
	$(MAKE) -C dev install
	$(MAKE) -C net install
	$(MAKE) -C pro install
	$(MAKE) -C crt install

clean:
	$(MAKE) -C os clean
	$(MAKE) -C fs clean
	$(MAKE) -C dev clean
	$(MAKE) -C net clean
	$(MAKE) -C pro clean
	$(MAKE) -C crt clean

apps:
	$(MAKE) -C app

apps-install:
	$(MAKE) -C app install

cleanall:
	$(MAKE) -C os clean
	$(MAKE) -C fs clean
	$(MAKE) -C dev clean
	$(MAKE) -C net clean
	$(MAKE) -C pro clean
	$(MAKE) -C crt clean
	$(MAKE) -C app clean

