1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-01 06:24:58 +03:00
inform7/scripts/first.sh

20 lines
590 B
Bash

echo "(A script to make a first build of the core Inform tools)"
echo "(Step 1 of 4: making the overall makefile)"
if ! ( ../inweb/Tangled/inweb -prototype scripts/makescript.txt -makefile makefile; ) then
echo "(Okay, so that failed. Have you installed and built Inweb?)"
exit 1
fi
echo "(Step 2 of 4: making individual makefiles)"
if ! ( make makers; ) then
exit 1
fi
echo "(Step 3 of 4: building the tools)"
if ! ( make; ) then
exit 1
fi
echo "(Step 4 of 4: building the virtual machine interpreters)"
if ! ( make -f inform6/inform6.mk interpreters; ) then
exit 1
fi
echo "(Done!)"