Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / config / imake / ccimake.c
1 /* $TOG: ccimake.c /main/16 1998/02/06 11:02:20 kaleb $ */
2 /*
3
4 Copyright (c) 1993, 1994, 1998  The Open Group
5
6 All Rights Reserved.
7
8 The above copyright notice and this permission notice shall be included in
9 all copies or substantial portions of the Software.
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
14 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
15 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17
18 Except as contained in this notice, the name of the The Open Group shall not be
19 used in advertising or otherwise to promote the sale, use or other dealings
20 in this Software without prior written authorization from The Open Group .
21
22 */
23
24 /* 
25  * Warning:  This file must be kept as simple as posible so that it can 
26  * compile without any special flags on all systems.  Do not touch it unless
27  * you *really* know what you're doing.  Make changes in imakemdep.h, not here.
28  */
29
30 #define CCIMAKE                 /* only get imake_ccflags definitions */
31 #include "imakemdep.h"          /* things to set when porting imake */
32
33 #ifndef imake_ccflags
34 #define imake_ccflags "-O"
35 #endif
36
37 main()
38 {
39         write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
40         exit(0);
41 }
42