OSDN Git Service

906134f3d7488b74a589249e5b0ed69d84b94e6d
[pf3gnuchains/sourceware.git] / tcl / mac / MW_TclAppleScriptHeader.pch
1 /*
2  * MW_TclAppleScriptHeader.pch --
3  *
4  *  This file is the source for a pre-compilied header that gets used
5  *  for TclAppleScript.  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
26 #if __POWERPC__
27 #pragma precompile_target "MW_TclAppleScriptHeaderPPC"
28 #elif __CFM68K__
29 #pragma precompile_target "MW_TclAppleScriptHeaderCFM68K"
30 #else
31 #pragma precompile_target "MW_TclAppleScriptHeader68K"
32 #endif
33
34 #include "tclMacCommonPch.h"
35
36 /* #define TCL_REGISTER_LIBRARY 1 */
37 #define USE_TCL_STUBS
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 #pragma export off
47