This file is indexed.

/usr/share/doc/pgapack/examples/fortran/Makefile.in is in pgapack 1.1.1-3.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
FC           = @FC@
PREFFLAGS    = @FFLAGS@
RM           = @RM@
LDFLAGS      = @LDFLAGS@
SHELL        = @SHELL@

#    "$@" expands to the target; "$?" expands to the dependency list
FFLAGS      = -o $@ $? $(PREFFLAGS)

LINK.f       = if test -n "$(FC)"; \
                   then echo "  Compiling $@" ; $(FC) $(FFLAGS) $(LDFLAGS); \
               else \
                   echo "$@: Fortran compiler unavailable"; fi

default:
	@make classic
	@make dejong
	@make example
	@make maxbit
	@make maxchar
	@make maxint 
	@make name
	@make namefull


classic: classic.f
	@$(LINK.f)

dejong: dejong.f
	@$(LINK.f)

example: example.f
	@$(LINK.f)

maxbit: maxbit.f
	@$(LINK.f)

maxchar: maxchar.f
	@$(LINK.f)

maxint: maxint.f
	@$(LINK.f)

name: name.f
	@$(LINK.f)

namefull: namefull.f
	@$(LINK.f)

clean: 
	@$(RM) classic dejong example maxbit maxchar maxint name namefull *.o