summaryrefslogtreecommitdiff
path: root/web/glasgow/lit2x-0.16/mkworld/ccjmake.c
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /web/glasgow/lit2x-0.16/mkworld/ccjmake.c
Initial commit
Diffstat (limited to 'web/glasgow/lit2x-0.16/mkworld/ccjmake.c')
-rw-r--r--web/glasgow/lit2x-0.16/mkworld/ccjmake.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/web/glasgow/lit2x-0.16/mkworld/ccjmake.c b/web/glasgow/lit2x-0.16/mkworld/ccjmake.c
new file mode 100644
index 0000000000..08909fa70a
--- /dev/null
+++ b/web/glasgow/lit2x-0.16/mkworld/ccjmake.c
@@ -0,0 +1,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);
+}
+