view test/build.bat @ 167:690ed78ead8a

Some type inference fixes and make method calls into regular calls when first arg type is known at compile time
author Mike Pavone <pavone@retrodev.com>
date Mon, 04 Apr 2011 01:41:19 -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