Nicolas Cannasse 19 ani în urmă
părinte
comite
440ea3ef64
3 a modificat fișierele cu 4 adăugiri și 53 ștergeri
  1. 1 1
      doc/CHANGES.txt
  2. 0 51
      doc/MakeRelease.bat
  3. 3 1
      doc/release.neko

+ 1 - 1
doc/CHANGES.txt

@@ -1,4 +1,4 @@
-2006-??-??: 1.09
+2006-11-22: 1.09
 	added neko.vm.Module and neko.vm.Loader
 	haxelib : allowed spaces in "run" arguments
 	allowed Thread comparison

+ 0 - 51
doc/MakeRelease.bat

@@ -1,51 +0,0 @@
-@echo off
-rm -rf haxe-release
-mkdir haxe-release
-mkdir haxe-release\doc
-
-cp ../haxe.exe ../haxesetup.exe CHANGES.txt LICENSE.txt haxeserver.bat haxe-release
-cp -R ../std haxe-release
-
-cd haxe-release\std
-
-haxe all.hxml
-cd tools
-
-rem ---------- BUILD TOOLS -----------
-
-cd haxedoc
-haxe haxedoc.hxml
-haxedoc ../../flash.xml;flash ../../neko.xml;neko ../../js.xml;js
-mv index.html content ../../../doc
-mv haxedoc.exe ../../..
-cd ..
-
-cd haxelib
-haxe haxelib.hxml
-mv haxelib.exe ../../..
-cd ..
-
-rem ---------- DONE -----------
-
-cd ..
-
-rm -rf CVS .cvsignore */CVS */.cvsignore */*/CVS */*/.cvsignore */*/*/CVS */*/*/.cvsignore
-rm -rf all.n all.js *.swf *.xml 
-cd tools
-
-cd haxedoc
-rm -rf haxedoc.n index.html content haxedoc.exe
-cd ..
-
-cd haxelib
-rm -rf *.bat *.zip *.db *.n tmp files
-cd ..
-
-cd ..
-rm -rf mt mtwin
-
-cd ..\..\..\..\neko\bin
-cp gc.dll neko.dll neko.exe nekoc.exe nekotools.exe *.ndll ../../haxe/doc/haxe-release
-
-echo The magic script is done, it's release time !
-pause

+ 3 - 1
doc/release.neko

@@ -4,8 +4,10 @@ if( version == null )
 
 sys = $loader.loadprim("std@sys_string",0)();
 binext = "";
+curdir = "./";
 ext = switch( sys ) {
 	"Windows" => {
+		curdir = ".\\";
 		binext = ".exe";
 		""
 	}
@@ -49,7 +51,7 @@ chdir("tools");
 
 chdir("haxedoc");
 cmd("haxe haxedoc.hxml");
-cmd("./haxedoc \"../../flash.xml;flash\" \"../../neko.xml;neko\" \"../../js.xml;js\"");
+cmd(curdir+"haxedoc \"../../flash.xml;flash\" \"../../neko.xml;neko\" \"../../js.xml;js\"");
 cmd("mv index.html content ../../../doc");
 cmd("mv haxedoc"+binext+" ../../..");
 chdir("..");