view test/build.bat @ 89:5a195ee08eac

Fix memory leak and bug that was preventing First@Dictionary from working properly
author Mike Pavone <pavone@retrodev.com>
date Sat, 31 Jul 2010 00:19:15 -0400
parents ea991f95ae1f
children
line wrap: on
line source

@echo off
cd ..\build

for %%f in (..\test\*.c ..\runtime\object.c ..\runtime\context.c ..\runtime\builtin.c ..\runtime\bool.c ..\runtime\integer.c) do (
	cl /c /O2 /I..\runtime %%f
	if errorlevel 1 goto end
)

cl /O2 test.obj object.obj context.obj builtin.obj bool.obj integer.obj
cl /O2 fib.obj object.obj context.obj builtin.obj bool.obj integer.obj winmm.lib

:end
cd ..\test