This file is indexed.

/usr/share/doc/libgit2-glib-1.0-dev/examples/Makefile.am is in libgit2-glib-1.0-doc 0.26.2-1.

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
AM_CPPFLAGS =				\
	-g				\
	-I$(top_srcdir)			\
	-I$(top_builddir)		\
	$(LIBGIT2_GLIB_CFLAGS)

noinst_PROGRAMS = $(EXAMPLE_PROGS)
progs_ldadd     = $(top_builddir)/libgit2-glib/libgit2-glib-1.0.la $(LIBGIT2_GLIB_LIBS)

EXAMPLE_PROGS		= general
general_SOURCES		= general.c
general_LDADD		= $(progs_ldadd)

EXAMPLE_PROGS		+= walk
walk_SOURCES		= walk.c
walk_LDADD		= $(progs_ldadd)

if HAS_TERMIOS
EXAMPLE_PROGS		+= clone
clone_SOURCES		= clone.c
clone_LDADD		= $(progs_ldadd)
endif

# ex:set ts=8 noet: