#
#  python/Makefile
#
#  Copyright (C) 2006 by Digi International Inc.
#  All rights reserved.
#
#  This program is free software; you can redistribute it and/or modify it
#  under the terms of the GNU General Public License version2  as published by
#  the Free Software Foundation.

SUB_DIRS = target

.PHONY: $(SUB_DIRS) install clean dirclean

all: $(SUB_DIRS)

$(SUB_DIRS):
	$(MAKE) -C $@

install install-del clean dirclean source:
	for a in $(SUB_DIRS); do $(MAKE) -C $$a $@; done
