#+---------------------------------------------------------------------------
#
#  Microsoft Windows
#  Copyright (C) Microsoft Corporation, 1994.
#
#  File:       makefile
#
#  Contents:   builds the MFract fractal engines
#
#  History:     5-03-94   stevebl   Created
#
#----------------------------------------------------------------------------

DIRLIST = mandel julia quad plasma rgen

all: $(DIRLIST)
        @for %%i in ($(DIRLIST)) do cd %%i && nmake -i && cd..

clean:
        @for %%i in ($(DIRLIST)) do cd %%i && nmake -i clean && cd..


