OSDN Git Service

75b5ba95e3d467d587ff24731fbf6bf8b3e30f68
[pf3gnuchains/sourceware.git] / tcl / mac / MW_TclTestHeader.pch
1 /*
2  * MW_TclHeader.pch --
3  *
4  *  This file is the source for a pre-compilied header that gets used
5  *  for all files in the Tcl projects.  This make compilies go a bit
6  *  faster.  This file is only intended to be used in the MetroWerks
7  *  CodeWarrior environment.  It essentially acts as a place to set 
8  *  compiler flags.  See MetroWerks documention for more details.
9  *
10  * Copyright (c) 1995-1997 Sun Microsystems, Inc.
11  *
12  * See the file "license.terms" for information on usage and redistribution
13  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
14  *
15  * RCS: @(#) $Id$
16  */
17
18 /*
19  * To use the compilied header you need to set the "Prefix file" in
20  * the "C/C++ Language" preference panel to point to the created
21  * compilied header.  The name of the header depends on the
22  * architecture we are compiling for (see the code below).  For
23  * example, for a 68k app the prefix file should be: MW_TclHeader68K.
24  */
25 #if __POWERPC__
26 #pragma precompile_target "MW_TclTestHeaderPPC"
27 #elif __CFM68K__
28 #pragma precompile_target "MW_TclTestHeaderCFM68K"
29 #else
30 #pragma precompile_target "MW_TclTestHeader68K"
31 #endif
32
33 #define TCL_DEBUG 1
34
35 /*#define TCL_THREADS 1*/
36
37 #include "tclMacCommonPch.h"
38
39 /*
40  * Place any includes below that will are needed by the majority of the
41  * and is OK to be in any file in the system.  The pragma's are used
42  * to control what functions are exported in the Tcl shared library.
43  */
44
45 #pragma export on
46 #include "tcl.h"
47 #include "tclMac.h"
48 #include "tclInt.h"
49 #include "MoreFiles.h"
50 #include "MoreFilesExtras.h"
51
52 #pragma export reset
53
54