]> git.uio.no Git - u/mrichter/AliRoot.git/blame - build/Makefile.linuxalphagcc
new functions, mc analysis can be performed also for pi0 and k0. eta of seed can...
[u/mrichter/AliRoot.git] / build / Makefile.linuxalphagcc
CommitLineData
282214ba 1# -*- mode: makefile -*-
2# Makefile to build AliRoot for Linux on alpha
3
4# System dependent commands
5
6XARGS = xargs -r
7
282214ba 8CCMAJORV = $(shell $(CC) -dumpversion | cut -d. -f1)
9CCMINORV = $(shell $(CC) -dumpversion | cut -d. -f2)
10
11# Global optimisation
12OPT = -O -g -mieee -mno-soft-float
13NOOPT = -g -mieee -mno-soft-float
14
15CXXOPT = $(OPT)
16CXXNOOPT = $(NOOPT)
17COPT = $(OPT)
18FOPT = $(OPT)
19
20# CERNLIB defines
21CLIBDEFS = -DCERNLIB_UNIX -DCERNLIB_DECS -DCERNLIB_BLDLIB -DCERNLIB_CZ
22CLIBCXXOPTS =
23CLIBCOPT =
24CLIBFOPT = $(CLIBDEFS)
25
26# Compiler flags
27
d76d4136 28CXXWARN = -Wall -Wno-long-long -W -Weffc++ -Wshadow -Woverloaded-virtual -ansi
29
30CXXFLAGS = $(OPT) -fPIC -pipe
31CXXFLAGSNO = $(NOOPT) -fPIC -pipe
282214ba 32CFLAGS = $(OPT) -Wall -fPIC -pipe -ansi
33FFLAGS = $(CLIBFOPT) $(FOPT) -Wall -fPIC -pipe -fno-second-underscore
34# rmkdepend flags for building dependencies of FORTRAN files
35DEPENDFFLAGS = $(FFLAGS)
36
37# rootcint flags
38CINTFLAGS =
39
5f30d16c 40LD = $(shell root-config --ld)
282214ba 41LDFLAGS = $(OPT)
42
43SHLD = $(LD)
44SOFLAGS = $(OPT) -Wall -fPIC -pipe -shared -Wl
45SHLIB = -lg2c
46SOEXT = so
47
48ALLD = ar
49ALFLAGS = cr
50ALLIB =
51AEXT = a
52
53#System libraries
54SYSLIBS := -ldl -lg2c -lcrypt -L/usr/X11R6/lib -lX11
55
56
57
58
59