Hello
Did you look at the {Install}\help|PDF\Power Architecture Build Tools Reference.pdf manual.
It says:
" __MWERKS__
Deprecated. Preprocessor macro defined as the version of the CodeWarrior compiler.
Syntax
__MWERKS__
Remarks
Replaced by the built-in preprocessor macro __CWCC__.
CodeWarrior compilers issued after 1995 define this macro with the compiler’s version. For example, if the compiler version is 4.0, the value of __MWERKS__ is 0x4000.
This macro is defined as 1 if the compiler was issued before the CodeWarrior CW7 that was released in 1995."
Note
A quick way to check whether the predefined macro is defined is to add following code to one of your application source file:
#ifdef __MWERKS__ #error "Test macro"#endif
Then try to build this file. If the predefined macro is defined you will get a message
"preprocessor #error directive"
I hope this helps
CrasyCat