Revision 711699f1747a84233837db637fb174ac5d75b6a8 authored by Fons Rademakers on 26 March 2009, 16:34:40 UTC, committed by Fons Rademakers on 26 March 2009, 16:34:40 UTC

git-svn-id: http://root.cern.ch/svn/root/branches/v5-22-00-patches@27950 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 681025c
Raw File
Makefile.alphacxx6
# $Id$
 
# Alpha OSF platform dependent definitions

# The compilers
CXX       = cxx
F77	      = f77

# Global optimisation
OPT	      = -g

# Shared library suffix
SL	      = so

# AWK
AWK	      = awk

# The options
CXXOPTS       = $(OPT) -nostdnew -rtti -taso
COPT          = $(OPT)
FOPT          = $(OPT) -nofor_main -warn noinformational -taso

# CERNLIB defines

CLIBDEFS      = -DCERNLIB_DECS -DCERNLIB_BLDLIB -DCERNLIB_CZ
CLIBCXXOPTS   = $(CLIBDEFS)
CLIBCOPT      = $(CLIBDEFS)
CLIBFOPT      =  $(CLIBDEFS) -I. -warn noinformational

LD            = cxx
LDFLAGS       = -taso

SHLD          = ld
SOFLAGS       = -L/usr/lib/cmplrs/cxx -rpath /usr/lib/cmplrs/cxx \
	        -expect_unresolved "*" -msym -shared \
	        /usr/lib/cmplrs/cc/crt0.o /usr/lib/cmplrs/cxx/_main.o 
SHLIB         = -lUfor -lfor -lFutil
back to top