blob: 6e3ef838b23df4259e3d2428c7d5db839413b543 (
plain)
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
|
/*
* You will have to change these
*/
HOME =/hyperion/a/grads/shankar
BINDIR =${HOME}/terra/bin
MANDIR =${HOME}/man
RESOURCES =${HOME}/lib/X11/app-defaults
/*
* Where do X includes and libraries live?
*/
INCROOT =/usr/local/X11R5/include
XLIBDIR =-L${XHOME}/lib
CDEBUGFLAGS=-O
/***********************************************************************/
#define XawClientDepLibs
#define XawClientLibs $(XLIBDIR) -lXaw -lXt -lXmu -lXext -lX11
SYS_LIBRARIES = $(XLIBDIR) -lXaw -lXt -lXmu -lXext -lX11 -lm
SYSLIBS = $(SYS_LIBRARIES)
CFLAGS=$(DEFINES) $(CDEBUGFLAGS) $(INCLUDES) $(SYS_INCLUDES)
#define YES 1
#define NO 0
#if defined(mips) || defined(ultrix)
# define UltrixArchitecture
#endif
|