summaryrefslogtreecommitdiff
path: root/web/glasgow/lit2x-0.16/mkworld/ccjmake.c
blob: 08909fa70a20092fef39e1afd8533502427caa3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * $XConsortium: ccjmake.c,v 1.12 89/10/16 12:09:23 jim Exp $
 * 
 * Warning:  This file must be kept as simple as posible so that it can 
 * compile without any special flags on all systems.  Do not touch it unless
 * you *really* know what you're doing.  Make changes in jmakemdep.h, not here.
 */

#define CCJMAKE			/* only get jmake_ccflags definitions */
#include "jmakemdep.h"		/* things to set when porting jmake */

#ifndef jmake_ccflags
#define jmake_ccflags "-O"
#endif

main()
{
	write(1, jmake_ccflags, sizeof(jmake_ccflags) - 1);
	exit(0);
}