######################################################################
##
## Copyright (c) 1994  Carnegie Mellon University
## All rights reserved.
## 
## Use and copying of this software and preparation of derivative
## works based on this software are permitted, including commercial
## use, provided that the following conditions are observed:
## 
## 1. This copyright notice must be retained in full on any copies
##    and on appropriate parts of any derivative works.
## 2. Documentation (paper or online) accompanying any system that
##    incorporates this software, or any part of it, must acknowledge
##    the contribution of the Gwydion Project at Carnegie Mellon
##    University.
## 
## This software is made available "as is".  Neither the authors nor
## Carnegie Mellon University make any warranty about the software,
## its performance, or its conformity to any specification.
## 
## Bug reports, questions, comments, and suggestions should be sent by
## E-mail to the Internet address "gwydion-bugs@cs.cmu.edu".
##
######################################################################
##
##  $Header: /afs/cs.cmu.edu/project/gwydion/hackers/nkramer/mindy/mindy-1.3/libraries/RCS/Makefile.in,v 1.5 95/04/04 16:53:27 nkramer Exp $
##

SHELL	=	f:\os2\cmd.exe
SUBDIRS	=	dylan streams print format random coll-ext string-ext

all:
	for %d in (${SUBDIRS}) do (cd %d & ${MAKE} & cd ..)

clean:
	rm -f *~ \#* core
	for %d in (${SUBDIRS}) do (cd %d & ${MAKE} clean & cd ..)

realclean:
	rm -f Makefile *~ \#* core
	for %d in (${SUBDIRS}) do (cd %d & ${MAKE} realclean & cd ..)

install:
	for %d in (${SUBDIRS}) do (cd %d & ${MAKE} install & cd ..)

