This file is indexed.

/usr/share/doc/libecm0-dev-common/examples/Makefile is in libecm0-dev-common 6.4.4+ds-5.

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
29
30
31
32
33
34
# /usr/share/doc/libecm0-dev-common/examples/Makefile
#
# Ad hoc Makefile for building and playing with the sample sources
# distributed within the debian package libecm0-dev-common.
#
# Recommended usage:
#  create a dedicated folder somewhere in your HOME directory;
#  link all the files in usr/share/doc/libecm0-dev-common/examples
#  in the dedicated folder; launch this Makefile in the dedicated
#  folder:
#  $ make ;
#  for a basic cleanup, consider the clean target:
#  $ make clean ;
#  for other targets, just read the Makefile.
#
# written for Debian by Jerome Benoit <calculus@rezozer.net>
# on behalf of the Debian Science Team
# copyright: 2015 Jerome Benoit <calculus@rezozer.net>
# distributed under the terms and conditions of GPL version 3 or later
#

default: all

PROGRAMS = \
	ecmfactor

LDLIBS = -lecm -lgmp

all: build

build: $(PROGRAMS)

clean:
	$(RM) $(PROGRAMS)