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__)
10 #elif defined (mc68040)
11 #define ARCH "mc68040"
12 #elif defined (mc68030)
13 #define ARCH "mc68030"
14 #elif defined (mc68020)
15 #define ARCH "mc68020"
17 #define ARCH "mc68000"
21 /** INSERT OTHER COMPILER **/
22 #define ARCH "mc68000"
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