]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - build/Makefile.linuxia64gcc
Bug fix in Z and Phi position of the wings on the SSD support cone (M. Sitta)
[u/mrichter/AliRoot.git] / build / Makefile.linuxia64gcc
index e92758d31a2a1af692d122d7865b1b3944e8784a..910780cf9a76e25ca4ebd505536b409109b343a0 100644 (file)
@@ -1,3 +1,4 @@
+# -*- mode: makefile -*-
 # Makefile for AliRoot for Itanium/Linux with gcc
 
 # System dependent commands
@@ -5,9 +6,9 @@
 XARGS = xargs -r
 
 # The compilers
-CXX           = g++ 
-F77          = g77
-CC           = gcc
+CXX           = $(shell root-config --cxx) 
+F77          = $(shell root-config --f77)
+CC           = $(shell root-config --cc)
 
 # Global optimisation
 OPT           = -g -O
@@ -35,7 +36,7 @@ DEPENDFFLAGS = $(FFLAGS)
 # rootcint flags
 CINTFLAGS     = 
 
-LD            = g++
+LD            = $(shell root-config --ld)
 LDFLAGS       = $(OPT) -Wl,-Map -Wl,$@.map
 
 SHLD         = $(LD)