X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fverstag.h;h=028719023435109148564d7a8daa8fa42302101a;hb=e8b0472be10fba4ca6baa62d8d483db90e28c06e;hp=a37bcc1112d53d7a98119ce8fe78ef6353199cea;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/verstag.h b/bertos/verstag.h index a37bcc11..02871902 100644 --- a/bertos/verstag.h +++ b/bertos/verstag.h @@ -27,34 +27,36 @@ * the GNU General Public License. * * Copyright 2003, 2004, 2005, 2006 Develer S.r.l. (http://www.develer.com/) - * Copyright 2001, 2002, 2003 by Bernardo Innocenti + * Copyright 2001, 2002, 2003 by Bernie Innocenti * * --> * - * \version $Id$ * - * \author Bernardo Innocenti + * \author Bernie Innocenti * * \brief Declare application version strings */ -#ifndef DEVLIB_VERSTAG_H -#define DEVLIB_VERSTAG_H -#ifndef ARCH_CONFIG_H - #include + +#ifndef BERTOS_VERSTAG_H +#define BERTOS_VERSTAG_H + +#ifndef CFG_ARCH_CONFIG_H + #include "cfg/cfg_arch.h" #endif #define APP_NAME "Appname" #define APP_DESCRIPTION "Long application name description" #define APP_AUTHOR "Develer" -#define APP_COPYRIGHT "Copyright 2006 Develer (http://www.develer.com/)" +#define APP_COPYRIGHT "Copyright 2009 Develer (http://www.develer.com/)" + -#if (ARCH & ARCH_FOO) +#if ARCH & ARCH_DEFAULT #define VERS_MAJOR 0 #define VERS_MINOR 1 #define VERS_REV 0 #define VERS_LETTER "" -#elif (ARCH & ARCH_BAR) +#elif ARCH & ARCH_NIGHTTEST #define VERS_MAJOR 0 #define VERS_MINOR 1 #define VERS_REV 0 @@ -100,4 +102,4 @@ extern const int vers_build_nr; /** Hostname of the machine used to build this binary (contains VERS_HOST) */ extern const char vers_host[]; -#endif /* DEVLIB_VERSTAG_H */ +#endif /* BERTOS_VERSTAG_H */