# 
# /*************************************************
# *     rpld - an IBM style RIPL server            *
# *************************************************/
# 
# /* Copyright (c) 1999,2000, James McKenzie.
#  *                      All rights reserved
#  * Copyright (c) 1999,2000, Christopher Lightfoot.
#  *                      All rights reserved
#  *
#  * By using this file, you agree to the terms and conditions set
#  * forth in the LICENCE file which can be found at the top level of
#  * the rpld distribution.
#  *
#  * IBM is a trademark of IBM corp.
#  *
#  */

SUBDIRS=dm9102

default:
	for i in $(SUBDIRS); do ${MAKE} -C $$i ; done
clean:
	for i in $(SUBDIRS); do ${MAKE} -C $$i clean ; done
tidy:
	for i in $(SUBDIRS); do ${MAKE} -C $$i tidy ; done
	ci -l -m\# Makefile

