main built
other built
Echo
Done!
gcc -c main.c
echo "main built"
gcc -c other.c
echo "other built"
echo "Echo"
gcc -o main main.o other.o
echo "Done!"
