This file is indexed.

/usr/share/doc/libvorbisidec-dev/examples/Makefile is in libvorbisidec-dev 1.0.2+svn18153-1~deb8u2.

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
#!/usr/bin/make

# makefile documenting how to build example code from the
# libvorbisidec ("tremor") library distribution.

# Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>

TARGETS = ivorbisfile_example iseeking_example

all: $(TARGETS)

%: %.c
	gcc -g -o $@ $< -lvorbisidec

clean:
	rm -f $(TARGETS)

# it is OK to unzip gzipped source (dh_installexamples auto-compresses
# larger files in the examples directory)
%.c: %.c.gz
	gzip -d $<
# but save any .c files that get unzipped!
.PRECIOUS: %.c

.PHONY: all clean