/etc/root/vmc/Makefile.macosxicc 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 45 46 47 48 49 50 51 52 53 54 55 56 | # -*- mode: makefile -*-
# $Id$
# MacOSX platform dependent definitions
# Architecture: PPC or x86
ARCH_PPCI386 := $(shell arch)
# fink directories
FINK_ROOT := $(shell which fink | sed -e 's?/bin/fink??')
# The compilers
CXX = $(shell root-config --cxx)
CC = $(shell root-config --cc)
F77 = $(shell root-config --f77)
# Global optimisation
OPT = -O -g
NOOPT = -g
# Shared library suffix
SL = dylib
# AWK
AWK = awk
# The options
#
#
CXXOPTS = $(OPT) -fPIC -wd1476
COPT = $(OPT) -fPIC -restrict
FOPT = $(NOOPT)
# CERNLIB defines
CLIBDEFS_TMP = -DCERNLIB_LINUX -DCERNLIB_BLDLIB -DCERNLIB_CZ
ifeq (i386,$(findstring i386,$(ARCH_PPCI386)))
CLIBDEFS = $(CLIBDEFS_TMP)
else
CLIBDEFS = $(CLIBDEFS_TMP) -DCERNLIB_PPC
endif
CLIBCXXOPTS = $(CLIBDEFS)
CLIBCOPT = $(CLIBDEFS)
CLIBFOPT = $(CLIBDEFS)
LD = $(shell root-config --ld)
LDFLAGS = $(OPT)
SHLD = $(LD)
SOFLAGS = $(OPT) -dynamiclib -undefined dynamic_lookup -single_module
SHLIB =
LIBS = $(ROOTLIBS)
|