]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - build/Makefile.hpuxacc
New classes for finding multiple vertices (in case of pile-up). They will be used...
[u/mrichter/AliRoot.git] / build / Makefile.hpuxacc
... / ...
CommitLineData
1# -*- mode: makefile -*-
2# Makefile to build AliRoot on HP-UX
3
4# System dependent commands
5
6XARGS = xargs
7
8# The compilers
9CXX = $(shell root-config --cxx)
10F77 = $(shell root-config --f77)
11CC = $(shell root-config --cc)
12
13# Global optimisation
14OPT = -g -O
15NOOPT = -g
16
17CXXOPT = $(OPT)
18CXXNOOPT = $(NOOPT)
19COPT = $(OPT)
20FOPT = $(OPT)
21
22# CERNLIB defines
23CLIBDEFS = -DCERNLIB_HPUX -DCERNLIB_BLDLIB -DCERNLIB_CZ
24CLIBCXXOPTS =
25CLIBCOPT = +z -Ae
26CLIBFOPT = $(CLIBDEFS) -WF,-P
27
28CXXFLAGS = $(CXXOPT) -Wc,-ansi_for_scope,on +Z -z +W70,495,740,749,823,829 -Dextname
29CXXFLAGSNO = $(CXXNOOPT) -Wc,-ansi_for_scope,on +Z -z +W70,495,740,749,823,829 -Dextname
30CFLAGS = $(COPT) +Z -Ae
31FFLAGS = $(CLIBFOPT) $(FOPT) +ppu +Z
32# rmkdepend flags for building dependencies of FORTRAN files
33DEPENDFFLAGS = $(FFLAGS)
34
35# rootcint flags
36CINTFLAGS =
37
38LD = $(shell root-config --ld)
39LDFLAGS = $(OPT) -z -Wl,+s -Wl,-E
40
41SHLD = $(LD)
42SOFLAGS = -b /usr/lib/libm.sl
43
44SOEXT = sl
45
46# additional ROOT libraries
47SYSLIBS := -lcrypt -L/usr/lib/X11R6 -lX11
48
49
50
51
52