comparison test/build.bat @ 12:31f8182f3433

Finished fib test and did some small work on the c backend
author Mike Pavone <pavone@retrodev.com>
date Mon, 25 May 2009 23:34:36 -0400
parents
children ea991f95ae1f
comparison
equal deleted inserted replaced
11:3021dac0d8f5 12:31f8182f3433
1 @echo off
2 cd ..\build
3
4 for %%f in (..\test\*.c ..\runtime\object.c ..\runtime\context.c ..\runtime\builtin.c ..\runtime\bool.c ..\runtime\integer.c) do (
5 cl /c /Ox /I..\runtime %%f
6 if errorlevel 1 goto end
7 )
8
9 cl /Ox test.obj object.obj context.obj builtin.obj bool.obj integer.obj
10 cl /Ox fib.obj object.obj context.obj builtin.obj bool.obj integer.obj winmm.lib
11
12 :end
13 cd ..\test