view test/build.bat @ 148:f582fd6c75ee

Fixed framework port, works for said.rhope example
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:37:05 -0500
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