aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile.am1
-rw-r--r--contrib/ascebc11
-rw-r--r--contrib/xcc2
3 files changed, 14 insertions, 0 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
new file mode 100644
index 00000000..0f4bd738
--- /dev/null
+++ b/contrib/Makefile.am
@@ -0,0 +1 @@
EXTRA_DIST = xcc ascebc \ No newline at end of file
diff --git a/contrib/ascebc b/contrib/ascebc
new file mode 100644
index 00000000..a8c3f143
--- /dev/null
+++ b/contrib/ascebc
@@ -0,0 +1,11 @@
1#!/bin/sh
2iconv -f UTF-8 -t IBM-1047 $1 > temp.file
3if test -x $1
4then
5 rm $1
6 mv temp.file $1
7 chmod +x $1
8else
9 rm $1
10 mv temp.file $1
11fi
diff --git a/contrib/xcc b/contrib/xcc
new file mode 100644
index 00000000..591bc564
--- /dev/null
+++ b/contrib/xcc
@@ -0,0 +1,2 @@
1#!/bin/sh
2c89 -Wc,'LANGLVL(EXTENDED),XPLINK' -Wl,'XPLINK' -D__STRING_CODE_SET__="ISO8859-1" -Wc,"ASCII" $@