mirror of
https://github.com/zeldaret/oot
synced 2026-07-10 06:57:21 -04:00
12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
srcfile="${@: -1}"
|
|
|
|
tempfile=`mktemp --tmpdir oot_XXXXXXXX.c`
|
|
|
|
iconv -f UTF-8 -t EUC-JP -o "$tempfile" "$srcfile"
|
|
|
|
"${@:1:$# - 1}" -I `dirname $srcfile` $tempfile
|