diff options
Diffstat (limited to 'tools/buildbat.tmpl')
-rwxr-xr-x | tools/buildbat.tmpl | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/buildbat.tmpl b/tools/buildbat.tmpl deleted file mode 100755 index a20559a90..000000000 --- a/tools/buildbat.tmpl +++ /dev/null @@ -1,21 +0,0 @@ -#! stdtmpl(subsChar='?') | standard -#proc GenerateBuildBatchScript(c: TConfigData): string = -# result = "@echo off\nREM Generated by niminst\n" -SET CC=gcc -SET LINKER=gcc -SET COMP_FLAGS=-w -O3 -fno-strict-aliasing -SET LINK_FLAGS= - -REM call the compiler: - -# var linkCmd = "" -# for f in items(c.cfiles[1][1]): -ECHO %CC% %COMP_FLAGS% -Ibuild -c ?{f} -o ?{changeFileExt(f, "o")} -%CC% %COMP_FLAGS% -Ibuild -c ?{f} -o ?{changeFileExt(f, "o")} -# linkCmd.add(" " & changeFileExt(f, "o")) -# end for - -ECHO %LINKER% %LINK_FLAGS% -o ?{c.binPaths[0]}\?{toLower(c.name)}.exe ?linkCmd -%LINKER% %LINK_FLAGS% -o ?{c.binPaths[0]}\?{toLower(c.name)}.exe ?linkCmd - -ECHO SUCCESS |