1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-24 17:00:20 +10:00
collapseos/tools/zasm.sh
2019-07-11 21:21:54 -04:00

18 lines
385 B
Bash
Executable File

#!/bin/sh
# wrapper around ./emul/zasm/zasm that prepares includes CFS prior to call
DIR=$(dirname $(readlink -f "$0"))
ZASMBIN="${DIR}/emul/zasm/zasm"
CFSPACK="${DIR}/cfspack/cfspack"
INCCFS=$(mktemp)
for p in "$@"; do
"${CFSPACK}" "${p}" "*.h" >> "${INCCFS}"
"${CFSPACK}" "${p}" "*.asm" >> "${INCCFS}"
done
"${ZASMBIN}" "${INCCFS}"
RES=$?
rm "${INCCFS}"
exit $RES