diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/build.bat	Mon May 25 23:34:36 2009 -0400
@@ -0,0 +1,13 @@
+@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 /Ox /I..\runtime %%f
+	if errorlevel 1 goto end
+)
+
+cl /Ox test.obj object.obj context.obj builtin.obj bool.obj integer.obj
+cl /Ox fib.obj object.obj context.obj builtin.obj bool.obj integer.obj winmm.lib
+
+:end
+cd ..\test
\ No newline at end of file