home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / config / ccimake.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-16  |  559 b   |  22 lines

  1. /*
  2.  * $XConsortium: ccimake.c,v 1.12 89/10/16 12:09:23 jim Exp $
  3.  * 
  4.  * Warning:  This file must be kept as simple as posible so that it can 
  5.  * compile without any special flags on all systems.  Do not touch it unless
  6.  * you *really* know what you're doing.  Make changes in imakemdep.h, not here.
  7.  */
  8.  
  9. #define CCIMAKE            /* only get imake_ccflags definitions */
  10. #include "imakemdep.h"        /* things to set when porting imake */
  11.  
  12. #ifndef imake_ccflags
  13. #define imake_ccflags "-O"
  14. #endif
  15.  
  16. main()
  17. {
  18.     write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
  19.     exit(0);
  20. }
  21.  
  22.