aboutsummaryrefslogtreecommitdiff
path: root/util/mkdist
diff options
context:
space:
mode:
Diffstat (limited to 'util/mkdist')
-rwxr-xr-xutil/mkdist26
1 files changed, 26 insertions, 0 deletions
diff --git a/util/mkdist b/util/mkdist
new file mode 100755
index 00000000..92d41daf
--- /dev/null
+++ b/util/mkdist
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+bins=("cygwin" "freebsd" "linux" "linux64" "macintel" "macosx" "sunos")
+for i in ${bins[@]}; do
+ touch bin.$i/IRAF.NET
+ touch noao/bin.$i/IRAF.NET
+done
+
+touch bin.cygwin/IB.CYGW.x86
+touch bin.freebsd/IB.FBSD.x86
+touch bin.linux/IB.LNUX.x86
+touch bin.linux64/IB.LNUX.x86_64
+touch bin.macintel/IB.MACX.x86_64
+touch bin.macosx/IB.MACX.UNI
+touch bin.sunos/IB.SSUN.x86
+touch bin.ipad/IB.IPAD.ARM
+
+touch noao/bin.cygwin/NB.CYGW.x86
+touch noao/bin.freebsd/NB.FBSD.x86
+touch noao/bin.linux/NB.LNUX.x86
+touch noao/bin.linux64/NB.LNUX.x86_64
+touch noao/bin.macintel/NB.MACX.x86_64
+touch noao/bin.macosx/NB.MACX.UNI
+touch noao/bin.sunos/NB.SSUN.x86
+touch noao/bin.ipad/NB.IPAD.ARM
+