-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMake.conf
119 lines (81 loc) · 1.77 KB
/
Make.conf
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# No make rules by default
.SUFFIXES:
# Extension of object files
O=.o
# Extension of executables
EXE=
# Bourn shell
SHELL=/bin/sh
# Path prefix for installation links
PREFIX=/home/hourui/Downloads/xmgrace-master
# List of subdirectories
SUBDIRS=cephes T1lib Xbae/Xbae src grconvert grace_np fonts templates doc examples auxiliary
# Name of executable
GRACE=xmgrace$(EXE)
# Location of the Grace home
GRACE_HOME=/home/hourui/Downloads/xmgrace-master/grace
# Relocatable that contains alloca()
ALLOCA=
# Type1 fonts library
T1_LIB=$(TOP)/T1lib/libt1.a
# T1 include path
T1_INC=-I$(TOP)/T1lib/t1lib
# T1lib defines (if the bundled version to be used)
T1_AA_TYPE16=short
T1_AA_TYPE32=int
T1_AA_TYPE64=long
# Library containing XDR functions
XDR_LIB=
# Library containing dll-related functions
DL_LIB=
# FFTW library
FFTW_LIB=
# netCDF libraries
NETCDF_LIBS=
# JPEG library
JPEG_LIB=-ljpeg
# libz library
Z_LIB=-lz
# PNG library
PNG_LIB=
# PDFlib library
PDF_LIB=
# Xbae include path
XBAE_INC=-I$(TOP)/Xbae
# Location of yacc (or its substitution)
YACC=bison -y
# C compiler
CC=gcc
# F77 compiler
FC=f77
# ar
AR=ar
# ranlib
RANLIB=ranlib
# rm
RM=rm -f
# soft link
LN_S=ln -s
# BSD install
INSTALL=/usr/bin/install -c
INSTALL_PROGRAM=${INSTALL}
INSTALL_DATA=${INSTALL} -m 644
MKINSTALLDIRS=/home/hourui/Downloads/xmgrace-master/ac-tools/shtool mkdir -p -f
# CPP flags
CPPFLAGS=
# C flags
CFLAGS0=-O2 -fno-common -Wall -Wpointer-arith -Wnested-externs
# GUI flags
GUI_FLAGS=
# LDFLAGS
LDFLAGS=
# Libraries (all but GUI)
NOGUI_LIBS=-ldl -lm
# GUI libraries
GUI_LIBS= $(TOP)/Xbae/Xbae/libXbae.a -lXm -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE
# Command used to print
PRINT_CMD='lp -c'
# Editor
GRACE_EDITOR='xterm -e vi'
# HTML help viewer command
GRACE_HELPVIEWER='mozilla %s'