/etc/root/vmc/Makefile.linuxia64ecc is in libroot-montecarlo-vmc-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # -*- mode: makefile -*-
# $Id$
# Linux (with icc) platform dependent definitions
# The compilers
CXX = $(shell root-config --cxx)
CC = $(shell root-config --cc)
F77 = $(shell root-config --f77)
# Global optimisation
OPT = -g #-O
# Shared library suffix
SL = so
# AWK
AWK = awk
# The options
#
# starting from root.2.22 on Linux the flags -fno-rtti -fno-exceptions are
# not necessary any more
#
CXXOPTS = $(OPT)
COPT = $(OPT)
FOPT = $(OPT)
# CERNLIB defines
CLIBDEFS = -DCERNLIB_LXIA64 -DCERNLIB_BLDLIB -DCERNLIB_CZ
CLIBCXXOPTS = $(CLIBDEFS)
CLIBCOPT = $(CLIBDEFS)
CLIBFOPT = $(CLIBDEFS)
LD = $(shell root-config --ld)
LDFLAGS = $(OPT)
SHLD = $(LD)
SOFLAGS = -Wl,-soname,$(notdir $@) -shared
SHLIB =
LIBS = $(ROOTLIBS)
LIBNOVER = `find /lib -name 'libNoVersion*.so' | xargs --replace basename {} .so | sed -e 's/lib/ -l/'`
|