This file is indexed.

/usr/share/RDKit/Contrib/PBF/Makefile is in rdkit-data 201603.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
LDFLAGS = -L${RDBASE}/lib  -lFileParsers_static  \
-lGraphMol_static -lDataStructs_static -lEigenSolvers_static -lRDGeometryLib_static -lRDGeneral_static \
-lboost_thread -lboost_system

ifndef BOOSTHOME
  BOOSTHOME=/usr/local/include
endif
CPPFLAGS = -O2 -I${BOOSTHOME} -I${RDBASE}/Code -Wno-deprecated -I/usr/local/include/eigen3 -DUSE_EIGEN2

%.o : %.cpp PBFRDKit.h
	$(CXX) $(CPPFLAGS)  -c -o $@ $< 

demo.exe: demo.o PBFRDKit.o 
	$(CXX)  -o $@ $< PBFRDKit.o $(LDFLAGS)