This file is indexed.

/usr/share/gocode/src/github.com/hanwen/go-fuse/benchmark/Makefile is in golang-github-hanwen-go-fuse-dev 0.0~git20171124.0.14c3015-4.

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
all: cstatfs bulkstat.bin

cstatfs: statfs.cc
	g++ -O2 -Wall -std=c++0x $< `pkg-config fuse --cflags --libs` -o $@

bulkstat.bin: bulkstat/main.go
	(cd bulkstat && go build main.go)
	cp bulkstat/main $@