-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makedefs.in
47 lines (42 loc) · 1.07 KB
/
Makedefs.in
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
#
# parameters needed to compile eucalyptus: modified by autoconf
#
#
# which version
export VERSION = @VERSION@
# packages we depend upon
export AXIS2C_HOME = @AXIS2C_HOME@
export AXIS2C_SERVICES = @AXIS2C_SERVICES@
export AXIS2_HOME = @AXIS2_HOME@
export LIBVIRT_HOME = @LIBVIRT_HOME@
# where eucalyptus will install and other standard stuff: eventually we'll
# comply to the GNU standard
prefix = @prefix@
#exec_prefix = @exec_prefix@
#bindir = @bindir@
#sbindir = @sbindir@
#libdir = @libdir@
#mandir = @mandir@
#incdir = @includedir@
#etcdir = @sysconfdir@
#datarootdir = @datarootdir@
etcdir = ${prefix}/etc
vardir = ${prefix}/var
usrdir = ${prefix}/usr
bindir = ${prefix}/usr/bin
sbindir = ${prefix}/usr/sbin
datarootdir = ${usrdir}/share
# where we are going to install eucalyptus, and Co.
export EUCALYPTUS = ${prefix}
TOP = @TOP@
DIST_DIR = eucalyptus-$(VERSION)
DIST_ROOT = $(TOP)/$(DIST_DIR)
# system dependents
CC = @CC@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
INCLUDES = @INCLUDES@
LIBS = @LIBS@
INSTALL = @INSTALL@
ANT = @ANT@ -e
WSDL2C = @WSDL2C@