I'm trying to get this to run in my (non-MPW) makefile:
MakePPCCodeRsrc build/obj/$(EXECUTABLE).tmp -o $(EXECUTABLE) -append -rt xcmd=7000 -c 'RSED' -t 'rsrc' -rn $(EXECUTABLE)
Installed copied the Scripts folder from Apple's MPW to ~/mpw/Scripts/. Tried
~/mpw/bin/mpw-shell -c "MakePPCCodeRsrc build/obj/$(EXECUTABLE).tmp -o build/$(EXECUTABLE) -append -rt xcmd=7000 -c 'RSED' -t 'rsrc' -rn $(EXECUTABLE)"
And as long as I add {MPW}Scripts to $Commands that seems to run, but it then fails with
Exiting - PC = 0
make: *** [build/SelectionMode] Error 70
I tried adding -v before -c to get some additional information, but that doesn't seem to have any effect. Also tried :build:obj:$(EXECUTABLE).tmp as the path. I'm assuming something about the file paths is wrong, but no idea how to confirm that or what format this stuff should really be. Do I somehow need to tell mpw-shell about the current directory from zsh? Or should it just pick that up?
I'm trying to get this to run in my (non-MPW) makefile:
Installed copied the
Scriptsfolder from Apple's MPW to~/mpw/Scripts/. TriedAnd as long as I add
{MPW}Scriptsto$Commandsthat seems to run, but it then fails withI tried adding
-vbefore-cto get some additional information, but that doesn't seem to have any effect. Also tried:build:obj:$(EXECUTABLE).tmpas the path. I'm assuming something about the file paths is wrong, but no idea how to confirm that or what format this stuff should really be. Do I somehow need to tellmpw-shellabout the current directory fromzsh? Or should it just pick that up?