Project:
Eucalyptus
Code Location:
git://github.com/eucalyptus/eucalyptus.gitmaster
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
48
49
50
51
52
53
54
55
56
57
58
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
# # parameters needed to compile eucalyptus: modified by autoconf # # # which version export VERSION = @EUCA_VERSION@ # packages we depend upon export APACHE2_MODULE_DIR = @APACHE2_MODULE_DIR@ export AXIS2C_HOME = @AXIS2C_HOME@ export AXIS2C_SERVICES = @AXIS2C_SERVICES@ export AXIS2_HOME = @AXIS2_HOME@ export LIBVIRT_HOME = @LIBVIRT_HOME@ export VDDK_HOME = @VDDK_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 libexecdir = ${usrdir}/libexec # where we are going to install eucalyptus and where are the sources export EUCALYPTUS = ${prefix} TOP = @TOP@ # system dependents CC = @CC@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ INCLUDES = @INCLUDES@ LIBS = @LIBS@ -pthread INSTALL = @INSTALL@ ANT = @ANT@ -e WSDL2C = @WSDL2C@ JAVA_HOME = @JAVA_HOME@ RM = @RM@ PYTHON = @PYTHON@ INDENTTOOLS = indent INDENTFLAGS = -nbad -bap -nbc -bbo -hnl -br -brs -c40 -cd40 -ncdb -ce -cli0 -d0 -di1 -nfc1 -i4 -nut -ip0 -l180 -lp -npcs -nprs -npsl -sai -saf -saw -ncs -nsc -sob -nfca -ss -ts4 -il0 -nip # compile time configurations euca_theme = @INTERFACE_THEME@ extensions = @EXTENSIONS@
