1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-07 17:44:22 +03:00
inform7/scripts/first.sh
2019-03-12 22:06:19 +00:00

16 lines
460 B
Bash

echo "(A script to make a first build of the core Inform tools)"
echo "(Step 1 of 3: 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 3: making individual makefiles)"
if ! ( make makers; ) then
exit 1
fi
echo "(Step 3 of 3: building the tools)"
if ! ( make; ) then
exit 1
fi
echo "(Done!)"