2019-10-11 06:21:37 +11:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# readlink -f doesn't work with macOS's implementation
|
|
|
|
# so, if we can't get readlink -f to work, try python with a realpath implementation
|
2019-10-16 13:41:44 +11:00
|
|
|
ABS_PATH=$(readlink -f "$0" || python -c "import os; print(os.path.realpath('$0'))")
|
2019-06-03 05:50:59 +10:00
|
|
|
|
|
|
|
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
|
2019-10-11 06:21:37 +11:00
|
|
|
DIR=$(dirname "${ABS_PATH}")
|
2019-06-03 05:50:59 +10:00
|
|
|
ZASMBIN="${DIR}/emul/zasm/zasm"
|
2019-06-03 09:54:37 +10:00
|
|
|
CFSPACK="${DIR}/cfspack/cfspack"
|
|
|
|
INCCFS=$(mktemp)
|
|
|
|
|
|
|
|
for p in "$@"; do
|
2019-07-12 11:21:54 +10:00
|
|
|
"${CFSPACK}" "${p}" "*.h" >> "${INCCFS}"
|
|
|
|
"${CFSPACK}" "${p}" "*.asm" >> "${INCCFS}"
|
2019-06-03 09:54:37 +10:00
|
|
|
done
|
|
|
|
|
2019-06-03 05:50:59 +10:00
|
|
|
"${ZASMBIN}" "${INCCFS}"
|
2019-06-03 09:54:37 +10:00
|
|
|
RES=$?
|
|
|
|
rm "${INCCFS}"
|
|
|
|
exit $RES
|