#*************************************************************************
#*
#*	  $Workfile:   make  $
#*
#*	  Ersterstellung	WKC 21.09.95
#*	  Letzte Aenderung	$Author: hr $ $Date: 2000/09/18 16:12:08 $
#*	  $Revision: 1.1.1.1 $
#*
#*	  $Logfile:   T:/basic/prj/make.__v  $
#*
#*	  Copyright (c) 1990 - 1995, STAR DIVISION
#*
#*************************************************************************
set curdir `Directory`
set exit 1

FOR Dirs in `files -f -d -o {PRJ_Root}BASIC:source:`
	IF "`Exists -f {Dirs}makefile.mac`" || "`Exists -f {Dirs}makefile.auto`"
		cd {Dirs}
		nmake {Parameters}
	END
END

cd {PRJ_Root}BASIC:source:testtool:server:
nmake {Parameters}

cd {PRJ_Root}BASIC:Util:
nmake {Parameters}

Directory {curdir}
set exit 0
