1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
--- Imakefile.orig Sat Nov 29 11:40:11 2003
+++ Imakefile Sat Nov 29 11:42:31 2003
@@ -1,22 +1,23 @@
-/**/#
-/**/# This is an Imakefile for the XGobi program. The only change that
-/**/# might need to be made is for the XGOBID variable.
-/**/#
-
-/**/# Remove the comment delimeters on the second to next line to
-/**/# compile for CORBA.
-/**/# Requires some Omegahat code - see README.corba.
-/**/#define USE_CORBA 1
-
-/**/# Set XGOBID to the directory containing
-/**/# the xgobi directories src, help, ps, etc.
+/*
+** This is an Imakefile for the XGobi program. The only change that
+** might need to be made is for the XGOBID variable.
+**
+** Remove the comment delimeters on the fourth to next line to
+** compile for CORBA.
+** Requires some Omegahat code - see README.corba.
+*/
+/*#define USE_CORBA 1 */
+/*
+** Set XGOBID to the directory containing
+** the xgobi directories src, help, ps, etc.
+*/
XGOBID = $(PWD)/..
-/**/# Use the gnu C compiler
- CC = gcc
+/* Use the gnu C compiler */
+ CC ?= gcc
CCOPTIONS = -ansi -w
-/**/# Or use the C compiler on your system, and whatever options it requires.
+/* Or use the C compiler on your system, and whatever options it requires.*/
# CC = cc
# CCOPTIONS = -xansi -n32
@@ -29,17 +30,19 @@
#endif /* End of USE_CORBA */
-/**/#
-/**/# RPC: Remote Procedure Calls
-/**/#
+/*
+** RPC: Remote Procedure Calls
+*/
+
+/* If you plan to use RPC, uncomment this #define
+** RPC is the define for any kind of RPC
+*/
-/**/# If you plan to use RPC, uncomment this #define
-/**/# RPC is the define for any kind of RPC
/* #define RPC */
-/**/# Special RPCs
+/* Special RPCs */
/* #define DCE_RPC */
-/**/# If you plan to use XPLORE, uncomment this #define
+/* If you plan to use XPLORE, uncomment this #define */
/* #define XPLORE */
#ifdef HPArchitecture
|