This file is indexed.

/usr/share/doc/ice35-services/config/Make.rules.Darwin is in ice35-services 3.5.1-5.2.

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
# **********************************************************************
#
# Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************

#
# This file is included by Make.rules when uname is Darwin.
#

include $(top_srcdir)/../cpp/config/Make.rules.$(UNAME)

shlibldflags    += -Wl,-rpath,$(embedded_runpath_prefix)/$(libsubdir)
mksoname		= $(if $(2),lib$(1).$(2).so,lib$(1).so)
mklibname       = lib$(1).so

#
# We require Python to be built as a Framework for the IcePy plug-in.
#
ifneq ($(PYTHON_HOME),)
    ifeq ($(shell test ! -f $(PYTHON_HOME)/Python && echo 0),0)
        $(error Unable to find Python framework See config/Make.rules.Darwin)
    endif
    PYTHON_LIBS		= -F$(patsubst %/Python.framework/Versions/,%,$(dir $(PYTHON_HOME))) -framework Python
else
    XCODE_PATH  = $(shell xcode-select --print-path)
    SDKS_DIR    = $(XCODE_PATH)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk
    PYTHON_HOME	= $(SDKS_DIR)/System/Library/Frameworks/Python.framework/Versions/Current
    PYTHON_LIBS	= -framework Python
endif

PYTHON_INCLUDE_DIR	= $(PYTHON_HOME)/include/$(PYTHON_VERSION)