1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-05-19 09:28:51 +03:00
inform7/scripts/first.sh

20 lines
597 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/inform.mkscript -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 force; ) 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!)"