]> git.uio.no Git - u/mrichter/AliRoot.git/blob - conf/MachineDef.Linux
Correct problem with Make-depend due to the new location of objects
[u/mrichter/AliRoot.git] / conf / MachineDef.Linux
1 # Which Machine 
2 PLATFORM      = linux
3
4 # The compilers
5 CXX           = echo $*.cxx ; g++
6 F77           = echo $*.F ; g77
7 CC            = echo $*.c ; gcc
8
9 # Global optimisation
10 OPT           = -O2
11 OPT           = -g
12
13 # Shared library suffix
14 SL            = so
15
16 # The options
17 CXXOPTS       = $(OPT) -Wall -fPIC  -fno-rtti -fno-exceptions
18 COPT          = $(OPT)
19 FOPT          = $(OPT) -fno-second-underscore
20
21 # CERNLIB defines
22
23 CLIBDEFS      = -DCERNLIB_LINUX -DCERNLIB_BLDLIB -DCERNLIB_CZ
24 CLIBCXXOPTS   =
25 CLIBCOPT      =
26 CLIBFOPT      =
27
28 # Additional directories for dependencies
29
30 DEPINC        = -I/usr/local/include/g++ -I/usr/local/include \
31                 -I/usr/local/i686-pc-linux-gnu/include \
32                 -I/usr/local/lib/gcc-lib/i686-pc-linux-gnu/egcs-2.91.60/include
33                 
34 LD            = g++
35 LDFLAGS       = $(OPT)
36
37 SHLD          = $(LD)
38 SOFLAGS       = -Wl,-soname,$(notdir $@) -shared 
39 SHLIB         = -lg2c
40
41 LIBS          = $(ROOTLIBS) -lm -ldl -rdynamic
42 GLIBS         = $(ROOTLIBS) $(ROOTGLIBS) -L/usr/X11R6/lib -lX11 -lg2c -ldl -lcrypt -rdynamic
43