It looks like HTML scrambled my previous message. (And replying in with HTML off seems to hang the system)
I am having a little trouble with the makefile.
If I use the recipe:
Objects/CMDS.obj: Sources/CMDS.asm
@echo 'Building file: $<'
@echo 'Invoking: HCS08 Assembler'
"$(HC08ToolsEnv)/ahc08" $(AFLAGS) "$<"
@echo 'Finished building: $<'
@echo ' '
the file CMDS.obj is generated correctly. But if I clean the project and change the top line to:
Objects/%.obj: Sources/%.asm
then I get the error message:
mingw32-make: *** No rule to make target `Objects/CMDS.obj'
I can't figure out what I am doing wrong. (Of course, I could always write a recipe for each object file, but this is supposed to work.)