Sorry it's not formatted terribly nice.
From here on out, you probably want to replace MY paths with your paths. So, if your ex291 lives in C:\ex291, then replace D:\Users\jkq\ECE291\ex291\bin with C:\ex291\bin, and so on.
";D:\Users\jkq\djgpp\bin;D:\Users\jkq\ECE291\ex291\bin"
So, my "Variable value:" used to be this (w/o the quotes):
"%HOMEDRIVE%%HOMEPATH%\bin"
and after 5.5, it's this (again, w/o the quotes):
"%HOMEDRIVE%%HOMEPATH%\bin;D:\Users\jkq\djgpp\bin;D:\Users\jkq\ECE291\ex291\bin"
| Variable name: | PATH |
| Variable value: | D:\Users\jkq\djgpp\bin;D:\Users\jkq\ECE291\ex291\bin |
| Variable name: | DJGPP |
| Variable value: | D:\Users\jkq\djgpp\djgpp.env |
| Variable name: | EX291 |
| Variable value: | w_K7,300_M12 |
| Variable name: | VBEAF_PATH |
| Variable value: | D:\Users\jkq\ECE291\ex291\bin |
So, this line:
gcc -o mp4 mp4.o v:/ece291/pmodelib/lib291.a libmp4.a
becomes this line:
gcc -o mp4 mp4.o d:/users/jkq/ece291/pmodelib/lib291.a libmp4.a
And this line:
nasm -f coff -iv:/ece291/pmodelib/include/ -o $ $*.o $< -l $*.lst
becomes this line:
nasm -f coff -id:/users/jkq/ece291/pmodelib/include/ -o $ $*.o $< -l $*.lst