#
# Copyright 2003 Sony Corporation
#
# Permission to use, copy, modify, and redistribute this software is
# hereby granted.
#
# This software is provided "as is" without warranty of any kind,
# either expressed or implied, including but not limited to the
# implied warranties of fitness for a particular purpose.
#

HOST_COMPONENTS=../../RoboCupGameController ../../RoboCupIPConfigurator
INSTALLROOT=$(shell pwd)
TARGETS=all install clean

.PHONY: $(TARGETS)

$(TARGETS):
	for c in $(HOST_COMPONENTS); do \
		$(MAKE) -C $$c/host INSTALLDIR=$(INSTALLROOT)/MS $@ ; \
	done
