blob: 8b480461770fa57110124fcb7cd27208ae5f12c3 (
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
|
# -*- shell-script -*-
#
# This file is part of the HDF5 build script. It is processed shortly
# after configure starts and defines is used to define environment
# variables which a specific machine may need
# Files in this directory should be named:
#
# host-$hostname
#
# where $hostname is the output from the `hostname' command.
# Specifying Extra Library Directories
# ------------------------------------
#
# The user should be able to specify extra library directories for the
# LDFLAGS macro. The compiler may not be set up to recognize those
# directories as valid library directories
if test -f "/usr/ncsa/lib"; then
LDFLAGS="/usr/ncsa/lib"
fi
# Specifying Extra Include Directories
# ------------------------------------
#
# The user should be able to specify extra include directories for the
# CPPFLAGS macro. The compiler may not be set up to recognize those
# directories as valid include directories
if test -f "/usr/ncsa/include"; then
CPPFLAGS="/usr/ncsa/include"
fi
|