summaryrefslogtreecommitdiffstats
path: root/windows/neo-vars/src/Make-Build.bat
diff options
context:
space:
mode:
authormösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-03 16:00:11 +0000
committermösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-03 16:00:11 +0000
commit586a21f43867ebbb1123e3f6784087436c6d8d46 (patch)
tree536470cfe45f1014e401bc79b85a7aa9c1391416 /windows/neo-vars/src/Make-Build.bat
parent9b250b95390643382fa8a4951e8ed65daca2b946 (diff)
Unterscheidung in src und out
git-svn-id: https://svn.neo-layout.org@1100 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/neo-vars/src/Make-Build.bat')
-rw-r--r--windows/neo-vars/src/Make-Build.bat59
1 files changed, 59 insertions, 0 deletions
diff --git a/windows/neo-vars/src/Make-Build.bat b/windows/neo-vars/src/Make-Build.bat
new file mode 100644
index 0000000..8cf0c8f
--- /dev/null
+++ b/windows/neo-vars/src/Make-Build.bat
@@ -0,0 +1,59 @@
+@echo off
+
+echo Setting local path variables
+:: TortoiseSVN and its clever tool SubWCRev
+set Tsvnpath=C:\Programme\TortoiseSVN\bin
+set SubWCRev=%Tsvnpath%\SubWCRev.exe
+
+set ahkpath=C:\Programme\AutoHotkey
+set Ahk2Exe=%ahkpath%\Compiler\Ahk2Exe.exe
+
+REM The path to the authohotkey directory in the local svn copy, MUST be "."
+set srcdir=.
+set outdir=..\out
+set Ssrcdir=%srcdir%\Source
+set ahkrevtemplate1=%Ssrcdir%\_subwcrev1.tmpl.ahk
+set ahkrevoutput1=%Ssrcdir%\_subwcrev1.ahk
+set batrevtemplate1=%Ssrcdir%\_subwcrev1.tmpl.bat
+set batrevoutput1=%Ssrcdir%\_subwcrev1.bat
+set ahkrevtemplate2=%Ssrcdir%\_subwcrev2.tmpl.ahk
+set ahkrevoutput2=%Ssrcdir%\_subwcrev2.ahk
+
+REM The path to the directory used for generating a consistent SVN version (revision number)
+set svnversiondir1=.
+set svnversiondir2=..\..\..\Compose
+
+:next1
+echo Generating Version File
+"%SubWCRev%" "%svnversiondir1%" "%ahkrevtemplate1%" "%ahkrevoutput1%"
+"%SubWCRev%" "%svnversiondir1%" "%batrevtemplate1%" "%batrevoutput1%"
+"%SubWCRev%" "%svnversiondir2%" "%ahkrevtemplate2%" "%ahkrevoutput2%"
+call "%batrevoutput1%"
+
+set fnahk=%srcdir%\neo20-r%Revision%.ahk
+"%SubWCRev%" "%svnversiondir1%" -nm
+if errorlevel 1 (
+ set fnexe=%outdir%\neo20-r%Revision%.exe
+) else (
+ set fnexe=%outdir%\neo20.exe
+)
+
+echo Compiling Compose sequences
+%Ssrcdir%\makecompose.ahk
+
+rem echo Killing the old (AHK)Driver
+rem tskill %fn%
+
+echo removing old version(s) of NEO AHK Exe file
+del %srcdir%\neo20-r*.exe %srcdir%\neo20-r*.ahk 2> nul
+
+echo creating all-in-one script
+echo ; Gesamtdatei > %fn%.ahk
+
+for %%i in (_subwcrev1 _subwcrev2 en_us neocomp neovarscomp keydefinitions shortcuts recycle keyhooks varsfunctions) do (type "%Ssrcdir%\%%i.ahk" >> "%fn%.ahk")
+
+echo Compiling the new Driver using Autohotkey
+"%Ahk2Exe%" /in "%fnahk%" /out "%fnexe%" /icon "%srcdir%\neo_enabled.ico"
+
+echo Driver Update complete! You can now close this log-window.
+pause \ No newline at end of file