Bruce Reeves SRNS:
Objs = \
$(o)$(appName).mo \Rscs = \
$(o)$(appName)Cmd.rsc \
In makefile syntax, the backslash is a continuation character. In both the above statements, bmake is looking for another line. It looks like some lines were removed, intentionally or otherwise, but the backlashes remain.
Change those lines...
Objs = \
$(o)$(appName).mo
Rscs = \
$(o)$(appName)Cmd.rsc
Or, perhaps more profitably, find out what was deleted.