summaryrefslogtreecommitdiff
path: root/ldmicro/makeall.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ldmicro/makeall.pl')
-rw-r--r--ldmicro/makeall.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/ldmicro/makeall.pl b/ldmicro/makeall.pl
new file mode 100644
index 0000000..6a4c132
--- /dev/null
+++ b/ldmicro/makeall.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/perl
+
+sub SYS { system($_[0]); }
+
+SYS("rm -rf build");
+SYS("mkdir build");
+
+for $f qw(DE ES FR IT PT TR) {
+ SYS("nmake clean");
+ SYS("nmake D=LDLANG_$f");
+ $fl = lc($f);
+ SYS("copy ldmicro.exe build\\ldmicro-$fl.exe");
+}
+
+SYS("nmake clean");
+SYS("nmake D=LDLANG_EN");
+SYS("copy ldmicro.exe build\\ldmicro.exe");