Ignore:
Timestamp:
01/25/09 17:20:17 (3 years ago)
Author:
debrouxl
Message:

Import GCC4TI Tools (formerly pctools of the TIGCC Tools Suite) with build scripts and preliminary Makefile (which always recompiles everything).
Remove the standalone ttpack + dependencies.

Location:
trunk/tigcc/tools
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/tigcc/tools/revtools.h

    • Property svn:executable deleted
    r1307 r1308  
    11/****************************************************************************** 
    22* 
    3 * project name:    TIGCC Tools Suite 
    4 * file name:       ttversion.h 
    5 * initial date:    13/08/2000 
     3* project name:    GCC4TI Tools (formerly TIGCC Tools Suite) 
     4* file name:       revtools.h 
     5* initial date:    23/08/2000 
    66* author:          thomas.nussbaumer@gmx.net 
    7 * description:     TIGCC Tools Suite version definitions 
     7* description:     macros for automatic handling of version number output 
     8* 
     9* examine one of the pctools source codes to see how it works ;-) 
    810* 
    911******************************************************************************/ 
    1012 
    1113/* 
    12   This file is part of the TIGCC Tools Suite. 
     14  This file is part of GCC4TI Tools. 
    1315 
    1416  This file is free software; you can redistribute it and/or 
     
    1719  version 2.1 of the License, or (at your option) any later version. 
    1820 
    19   As a special exception, UNMODIFIED copies of some TIGCC Tools Suite utilities 
    20   may also be redistributed or sold without source code, for any purpose. (The 
    21   Lesser General Public License restrictions do apply in other respects; for 
    22   example, they cover modification of the program.) Please refer to the main 
    23   source file for the individual utility as to whether this is the case for a 
    24   particular tool. This exception notice must be removed on modified copies of 
    25   this file. 
     21  As a special exception, UNMODIFIED copies of revtools may also be 
     22  redistributed or sold without source code, for any purpose. (The Lesser 
     23  General Public License restrictions do apply in other respects; for example, 
     24  they cover modification of the program.) This exception notice must be 
     25  removed on modified copies of this file. 
    2626 
    2727  This program is distributed in the hope that it will be useful, 
     
    3535*/ 
    3636 
    37 #ifndef __TTVERSION_H__ 
    38 #define __TTVERSION_H__ 
     37#ifndef __REV_TOOLS_H__ 
     38#define __REV_TOOLS_H__ 
    3939 
    40 #define TTV_MAIN   "1.31" 
    41 #define TTV_SUB    "" 
    42 #define USAGE_OUT  stdout 
     40#include <stdio.h> 
     41 
     42#define PRINT_ID(name)  {fprintf(stdout,"\n");fprintf(stdout, name" ");\ 
     43                         fprintf(stdout,FILE_REVISION);\ 
     44                         fprintf(stdout," - GCC4TI Tools v"TTV_MAIN TTV_SUB"\n" \ 
     45                                       "(c) thomas.nussbaumer@gmx.net "__DATE__" "__TIME__"\n\n");} 
     46 
     47 
    4348 
    4449#endif 
     
    4752//###################### NO MORE FAKES BEYOND THIS LINE ####################### 
    4853//############################################################################# 
    49 // no revision history for this file (should clear what changes, isn't it?) 
Note: See TracChangeset for help on using the changeset viewer.