blob: 72be72b9633d57c110ade8759a335f0a60b7d5d0 (
plain) (
blame)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
*** src/Imakefile Tue Oct 17 10:26:22 1995
--- src/Imakefile Tue Oct 17 10:48:34 1995
***************
*** 36,96 ****
/* The object files that will be generated */
OBJS = $(SRCS:.c=.o)
- /*
- * Specify this line if you want the program to be compiled with Debugging. *
- *
- */
-
- CDEBUGFLAGS = -g -Wall
-
- CC = gcc
-
- /*
- * Change the name of the compiler here. The default version is
- * 'gcc'. (the Motif libraries needed to be built with it.)
- * If you are changing the compiler to 'cc', you may also need to
- * redefine the EXTRA_LOAD_FLAGS envariable
- *
- * Uncomment this section if GCC is not the compiler.
- *
- * CC=gcc
- *
- * EXTRA_LOAD_FLAGS=
- *
- */
-
- /*
- * This section tells it which Client library to use.
- * Use 'XawClientLibs' and 'XawClientDepLibs' for the Athena Widget set.
- * Use 'XmClientLibs' and 'XmClientDepLibs' for the Motif widget set.
- * LCL_LIB = XawClientLibs
- * DEPLIBS = XawClientDepLibs
- */
-
-
/*
* This is the Directory of the HTML Widget Library. (Please change it)
* and CCI library
*/
! LCL_LIB = -L/fs5/grads12/puninj/HTML/libhtmlw \
! -L/fs5/grads12/puninj/HTML/CCI/libcci
/*
* This is the Directory of the HTML Widget Include Files (Please change it)
* and CCI library
*/
! INCLUDES = -I/fs5/grads12/puninj/HTML/libhtmlw \
! -I/fs5/grads12/puninj/HTML/CCI/libcci
-
- #EXTRA_LIBRARIES = -lcci -lhtmlw -lXm -lXt -lXext -lX11
- EXTRA_LIBRARIES = -lcci -lhtmlw -lXm -lXaw -lXmu -lXt -lXext -lX11
! #
! # This is what is built when you say 'make all'
! AllTarget($(TARGETS))
!
! NormalProgramTarget( $(TARGETS), $(OBJS), $(DEPLIBS), $(LCL_LIB), $(SYS_LIB))
!
! DependTarget()
!
!
--- 36,55 ----
/* The object files that will be generated */
OBJS = $(SRCS:.c=.o)
/*
* This is the Directory of the HTML Widget Library. (Please change it)
* and CCI library
*/
! LOCAL_LDFLAGS = -L../libhtmlw-src -L../libcci
!
/*
* This is the Directory of the HTML Widget Include Files (Please change it)
* and CCI library
*/
! INCLUDES = -I../libhtmlw-src -I../libcci
+ EXTRA_LIBRARIES = -lcci -lhtmlw ${MOTIFLIB} XawClientLibs
! ComplexProgramTarget(xhtml)
! InstallNonExecFile(help.html,$(LIBDIR)/xhtml)
! InstallNonExecFile(XHTML.ad,$(XAPPLOADDIR))
|