This file is indexed.

/usr/share/doc/pgapack/examples/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
FC    = @FC@
RM    = @RM@
SHELL = @SHELL@

default:
	@echo "Making C examples"
	@make C
	@echo "Making fortran examples"
	@make Fortran

C:
	@cd c; make

Fortran:
	@if test -n "$(FC)" ; then\
		cd fortran; make; cd ..;\
		cd mgh; make;\
	else\
		echo "Fortran compiler unavailable";\
	fi

clean:
	@cd c; make clean
	@cd fortran; make clean
	@cd mgh; make clean