Retro68/binutils/ld/genscrba.sh

17 lines
319 B
Bash
Raw Normal View History

2012-03-26 19:18:29 +00:00
#!/bin/bash
source_em()
{
local current_script="$em_script"
em_script=$1
2022-10-27 18:45:45 +00:00
source_sh $1
2012-03-26 19:18:29 +00:00
em_script=$current_script
}
fragment()
{
if [ ${BASH_VERSINFO[3]} -ge 3 ]; then
local lineno=$[${BASH_LINENO[0]} + 1]
echo >> e${EMULATION_NAME}.c "#line $lineno \"$em_script\""
fi
cat >> e${EMULATION_NAME}.c
}