summaryrefslogtreecommitdiffstats
path: root/src/config/ccimake.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/ccimake.c')
-rw-r--r--src/config/ccimake.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/config/ccimake.c b/src/config/ccimake.c
deleted file mode 100644
index 6f13d64cb5..0000000000
--- a/src/config/ccimake.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * $XConsortium: ccimake.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 imakemdep.h, not here.
- */
-
-#define CCIMAKE /* only get imake_ccflags definitions */
-#include "imakemdep.h" /* things to set when porting imake */
-
-#ifndef imake_ccflags
-#define imake_ccflags "-O"
-#endif
-
-main()
-{
- write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
- exit(0);
-}
-