]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - build/Makefile.linuxia64ecc
New plots in the macro for ITS RecPoint display (F.Prino)
[u/mrichter/AliRoot.git] / build / Makefile.linuxia64ecc
index d66e339d369fd957f0dad9d6a59c1319c83ae2e3..9cae8069634c44b01bb75f60879daf1476bce93a 100644 (file)
@@ -1,9 +1,14 @@
+# -*- mode: makefile -*-
 # Makefile for AliRoot for Itanium/Linux with Intel icc compiler
 
+# System dependent commands
+
+XARGS = xargs -r
+
 # The compilers
-CXX           = icc 
-F77          = ifort
-CC           = icc
+CXX           = $(shell root-config --cxx) 
+F77          = $(shell root-config --f77) 
+CC           = $(shell root-config --cc) 
 
 # Global optimisation
 OPT           = -g #-O
@@ -31,7 +36,7 @@ DEPENDFFLAGS  = $(FFLAGS)
 # rootcint flags
 CINTFLAGS     = 
 
-LD            = icpc
+LD            = $(shell root-config --ld)
 LDFLAGS       = $(OPT) 
 
 SHLD         = $(LD)
@@ -49,4 +54,4 @@ AEXT        = a
 LIBNOVER      = `find /lib -name 'libNoVersion*.so' | xargs --replace basename {} .so | sed -e 's/lib/ -l/'`
 
 SYSLIBS      := $(LIBNOVER) -lcrypt -L/usr/local/lib -lXt -lCEPCF90 -lF90 \
-                -lPEPCF90 -lintrins -L/usr/X11R6/lib -lX11
\ No newline at end of file
+                -lPEPCF90 -lintrins -L/usr/X11R6/lib -lX11