This file is indexed.

/usr/share/doc/libcunit1-doc/examples/Makefile.am is in libcunit1-doc 2.1-0.dfsg-9.

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
## Process this file with automake to produce Makefile.in

EXAMPLE_DIRS = . 

if ENABLE_BASIC
BASIC_EXAMPLE_DIRS = BasicTest
endif

if ENABLE_CONSOLE
CONSOLE_EXAMPLE_DIRS = ConsoleTest
endif

if ENABLE_CURSES
CURSES_EXAMPLE_DIRS = CursesTest
endif

if ENABLE_AUTOMATED
AUTOMATED_EXAMPLE_DIRS = AutomatedTest
endif

EXAMPLE_DIRS += $(BASIC_EXAMPLE_DIRS) $(CONSOLE_EXAMPLE_DIRS) $(CURSES_EXAMPLE_DIRS) $(AUTOMATED_EXAMPLE_DIRS)

SUBDIRS = ${EXAMPLE_DIRS}

if ENABLE_EXAMPLES
noinst_LIBRARIES = libcunitexamples.a
libcunitexamples_a_SOURCES = ExampleTests.c
endif