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