1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-02-01 14:32:40 +00:00
Files
DoctorWkt.unix-jun72/tools/assem
2008-05-01 19:18:00 +00:00

28 lines
554 B
Bash
Executable File

#!/bin/sh
#
# assemble the sources
#
# settings
APOUT=/tmp/apout2.3alpha2/apout
APOUT_ROOT=/tmp/s2
export APOUT_ROOT
tools/rebuild
# fix "mount" issue which 1ed as cant deal with
# and also fix up the vector table in u0.s since
# the result is a slightly different format a.out that doesnt
# include the header in the text segment
test -d build || mkdir build
for f in rebuilt/u?.s ; do
b=`basename $f`
sed -e 's/mount/xmount/g' \
-e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' < $f > build/$b
done
cd build
$APOUT $APOUT_ROOT/bin/as - u?.s