~ubuntu-branches/ubuntu/jaunty/grace/jaunty

« back to all changes in this revision

Viewing changes to ac-tools/Make.conf.in

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-19 14:19:58 UTC
  • Revision ID: james.westby@ubuntu.com-20020319141958-5gxna6vo1ek3zjml
Tags: upstream-5.1.7
ImportĀ upstreamĀ versionĀ 5.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# No make rules by default
 
2
.SUFFIXES:
 
3
 
 
4
# Extension of object files
 
5
O=@OBJEXT@
 
6
 
 
7
# Extension of executables
 
8
EXE=@EXEEXT@
 
9
 
 
10
# Bourn shell
 
11
SHELL=/bin/sh
 
12
 
 
13
# Path prefix for installation links
 
14
PREFIX=@prefix@
 
15
 
 
16
# List of subdirectories
 
17
SUBDIRS=@SUBDIRS@
 
18
 
 
19
# Name of executable
 
20
GRACE=@GRACE@$(EXE)
 
21
 
 
22
# Location of the Grace home
 
23
GRACE_HOME=@GRACE_HOME@
 
24
 
 
25
# Relocatable that contains alloca()
 
26
ALLOCA=@ALLOCA@
 
27
 
 
28
# Type1 fonts library
 
29
T1_LIB=@T1_LIB@
 
30
 
 
31
# T1 include path
 
32
T1_INC=@T1_INC@
 
33
 
 
34
# T1lib defines (if the bundled version to be used)
 
35
T1_AA_TYPE16=@T1_AA_TYPE16@
 
36
T1_AA_TYPE32=@T1_AA_TYPE32@
 
37
T1_AA_TYPE64=@T1_AA_TYPE64@
 
38
 
 
39
# Library containing XDR functions
 
40
XDR_LIB=@XDR_LIB@
 
41
 
 
42
# Library containing dll-related functions
 
43
DL_LIB=@DL_LIB@
 
44
 
 
45
# FFTW library
 
46
FFTW_LIB=@FFTW_LIB@
 
47
 
 
48
# netCDF libraries
 
49
NETCDF_LIBS=@NETCDF_LIBS@
 
50
 
 
51
# JPEG library
 
52
JPEG_LIB=@JPEG_LIB@
 
53
 
 
54
# libz library
 
55
Z_LIB=@Z_LIB@
 
56
 
 
57
# PNG library
 
58
PNG_LIB=@PNG_LIB@
 
59
 
 
60
# TIFF library
 
61
TIFF_LIB=@TIFF_LIB@
 
62
 
 
63
# PDFlib library
 
64
PDF_LIB=@PDF_LIB@
 
65
 
 
66
# Xbae include path
 
67
XBAE_INC=@XBAE_INC@
 
68
 
 
69
# Location of yacc (or its substitution)
 
70
YACC=@YACC@
 
71
 
 
72
# C compiler
 
73
CC=@CC@
 
74
 
 
75
# F77 compiler
 
76
FC=@FC@
 
77
 
 
78
# ar
 
79
AR=@AR@
 
80
 
 
81
# ranlib
 
82
RANLIB=@RANLIB@
 
83
 
 
84
# rm
 
85
RM=rm -f
 
86
 
 
87
# soft link
 
88
LN_S=@LN_S@
 
89
 
 
90
# BSD install
 
91
INSTALL=@INSTALL@
 
92
INSTALL_PROGRAM=@INSTALL_PROGRAM@
 
93
INSTALL_DATA=@INSTALL_DATA@
 
94
MKINSTALLDIRS=@MKINSTALLDIRS@
 
95
 
 
96
# CPP flags
 
97
CPPFLAGS=@CPPFLAGS@
 
98
 
 
99
# C flags
 
100
CFLAGS0=@CFLAGS@
 
101
 
 
102
# GUI flags
 
103
GUI_FLAGS=@GUI_FLAGS@
 
104
 
 
105
# LDFLAGS
 
106
LDFLAGS=@LDFLAGS@
 
107
 
 
108
# Libraries (all but GUI)
 
109
NOGUI_LIBS=@NOGUI_LIBS@
 
110
 
 
111
# GUI libraries
 
112
GUI_LIBS=@X_LIBS@ @GUI_LIBS@
 
113
 
 
114
# Command used to print
 
115
PRINT_CMD=@PRINT_CMD@
 
116
 
 
117
# Editor
 
118
GRACE_EDITOR=@GRACE_EDITOR@
 
119
 
 
120
# HTML help viewer command
 
121
HELPVIEWER=@HELPVIEWER@
 
122