add casts to zune macros to silence some warnings
[tangerine.git] / workbench / tools / Edit / Version.h
blob05c83b0a1b2a864d47f29be2b56ec4f0a324bb81
1 /*** Constants identifying the prog: ***/
2 #define APPNAME "JanoEditor"
3 #define DATE "nov 29, 2001"
4 #define VERSION "v1.01"
6 /*** Processor target type ***/
7 #if defined(__GNUC__) || defined(__SASC__)
8 #if defined (mc68060)
9 #define ARCH "mc68060"
10 #elif defined (mc68040)
11 #define ARCH "mc68040"
12 #elif defined (mc68030)
13 #define ARCH "mc68030"
14 #elif defined (mc68020)
15 #define ARCH "mc68020"
16 #else
17 #define ARCH "mc68000"
18 #endif
19 #else
21 /** INSERT OTHER COMPILER **/
22 #define ARCH "mc68000"
24 #endif
26 #define TARGET "CBM-AmigaDOS-" ARCH
27 #define SVERID APPNAME " " VERSION " http://perso.wanadoo.fr/cyrille.guillaume/"
28 #define SVER "$VER: " APPNAME " " VERSION " on " DATE " for " TARGET